aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2014-11-03 04:31:10 -0500
committerJustin M. Keyes <justinkz@gmail.com>2014-11-03 04:31:10 -0500
commit33d3a7c83b2f1d2cda22b53bf82d68267154cdfd (patch)
treea9ae5d772acc853e8f9da28a38a6452a59f4fabe
parent50590ba54ecbbf8b57019215bcb82fd9905b8790 (diff)
parent87ab0416100b5f6a6ca09806cebbfa0ad6e2d535 (diff)
downloadrneovim-33d3a7c83b2f1d2cda22b53bf82d68267154cdfd.tar.gz
rneovim-33d3a7c83b2f1d2cda22b53bf82d68267154cdfd.tar.bz2
rneovim-33d3a7c83b2f1d2cda22b53bf82d68267154cdfd.zip
Merge pull request #1366 from fwalch/homebrew-release
Homebrew: Compile as release build.
-rw-r--r--neovim.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/neovim.rb b/neovim.rb
index 30c0eecb0f..8a21baff59 100644
--- a/neovim.rb
+++ b/neovim.rb
@@ -12,6 +12,6 @@ class Neovim < Formula
def install
ENV["GIT_DIR"] = cached_download/".git" if build.head?
ENV.deparallelize
- system "make", "CMAKE_EXTRA_FLAGS=\"-DCMAKE_INSTALL_PREFIX:PATH=#{prefix}\"", "install"
+ system "make", "CMAKE_BUILD_TYPE=RelWithDebInfo", "CMAKE_EXTRA_FLAGS=\"-DCMAKE_INSTALL_PREFIX:PATH=#{prefix}\"", "install"
end
end