aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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