diff options
author | Tayler Mulligan <mulligantayler@gmail.com> | 2014-09-30 03:04:49 -0700 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-10-07 01:44:34 +0000 |
commit | 644da5a43eb245409a8bcd55262ec9a92512a055 (patch) | |
tree | 8daa4289602c9e5c1ce07cff46e870ab4265a64a | |
parent | 04b298ee754bad9917cd910b59299c5be2cd59e0 (diff) | |
download | rneovim-644da5a43eb245409a8bcd55262ec9a92512a055.tar.gz rneovim-644da5a43eb245409a8bcd55262ec9a92512a055.tar.bz2 rneovim-644da5a43eb245409a8bcd55262ec9a92512a055.zip |
homebrew: use Makefile-defined defaults. #1259
Assuming homebrew always uses a clean workspace, a separate "cmake" step
is not necessary.
-rw-r--r-- | neovim.rb | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -11,8 +11,6 @@ class Neovim < Formula def install ENV.deparallelize - system "make", "deps" - system "cmake", "-DCMAKE_BUILD_TYPE=Debug", "-DCMAKE_PREFIX_PATH=.deps/usr", "-DLibUV_USE_STATIC=YES", "-DCMAKE_INSTALL_PREFIX:PATH=#{prefix}" - system "make", "install" + system "make", "CMAKE_EXTRA_FLAGS=\"-DCMAKE_PREFIX_PATH=#{prefix}\"", "install" end end |