From ae440dc504f2cc4dd41fa45e68ce930e5160c53f Mon Sep 17 00:00:00 2001 From: Florian Walch Date: Thu, 9 Oct 2014 14:00:23 +0200 Subject: [PATCH] homebrew: fix install prefix --- neovim.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neovim.rb b/neovim.rb index 0c3da577ca..ed826fd0c5 100644 --- a/neovim.rb +++ b/neovim.rb @@ -11,6 +11,6 @@ class Neovim < Formula def install ENV.deparallelize - system "make", "CMAKE_EXTRA_FLAGS=\"-DCMAKE_PREFIX_PATH=#{prefix}\"", "install" + system "make", "CMAKE_EXTRA_FLAGS=\"-DCMAKE_INSTALL_PREFIX:PATH=#{prefix}\"", "install" end end