Skip to content
This repository has been archived by the owner on Aug 8, 2018. It is now read-only.

Commit

Permalink
Merge pull request #77 from soli/soli-patch-1
Browse files Browse the repository at this point in the history
Ensure Ruby 1.8 compatibility
  • Loading branch information
justinmk committed Jul 24, 2015
2 parents 97f2e99 + 1638387 commit b2a8000
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Formula/neovim.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,16 @@ def install

cd "deps-build" do
ohai "Building third-party dependencies."
system "cmake", "../third-party", *std_cmake_args, "-DUSE_BUNDLED_BUSTED=OFF"
system "cmake", "../third-party", "-DUSE_BUNDLED_BUSTED=OFF", *std_cmake_args
system "make", "VERBOSE=1"
end

mkdir "build" do
ohai "Building Neovim."
system "cmake", "..", *std_cmake_args,
system "cmake", "..",
"-DDEPS_PREFIX=../deps-build/usr",
"-DCMAKE_BUILD_TYPE=RelWithDebInfo"
"-DCMAKE_BUILD_TYPE=RelWithDebInfo",
*std_cmake_args
system "make", "VERBOSE=1", "install"
end
end
Expand Down

0 comments on commit b2a8000

Please sign in to comment.