diff options
| author | Jack Nagel | 2012-03-15 17:20:25 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-03-15 17:20:25 -0500 |
| commit | 3b771d09e48f4dfa88ef4c5d32f3b84ca2ae18ec (patch) | |
| tree | b4818f7428913eb237f02378f72745149889e9b8 /Library | |
| parent | 9d3b181c86ceb5915d0e907c5736d4825659f8fe (diff) | |
| download | homebrew-3b771d09e48f4dfa88ef4c5d32f3b84ca2ae18ec.tar.bz2 | |
Don't shadow `install` options in formulae
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/luajit.rb | 4 | ||||
| -rw-r--r-- | Library/Formula/node.rb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/luajit.rb b/Library/Formula/luajit.rb index d5f8626c7..695f3cce6 100644 --- a/Library/Formula/luajit.rb +++ b/Library/Formula/luajit.rb @@ -12,11 +12,11 @@ class Luajit < Formula fails_with_llvm "_Unwind_Exception_Class undeclared", :build => 2336 def options - [["--debug", "Build with debugging symbols."]] + [["--enable-debug", "Build with debugging symbols."]] end def install - if ARGV.include? '--debug' + if ARGV.include? '--enable-debug' system "make", "CCDEBUG=-g", "PREFIX=#{prefix}", "TARGET_CC=#{ENV['CC']}", "amalg" diff --git a/Library/Formula/node.rb b/Library/Formula/node.rb index 20f547dc6..d3d348c55 100644 --- a/Library/Formula/node.rb +++ b/Library/Formula/node.rb @@ -21,7 +21,7 @@ class Node < Formula skip_clean :all def options - [["--debug", "Build with debugger hooks."]] + [["--enable-debug", "Build with debugger hooks."]] end def install @@ -34,7 +34,7 @@ class Node < Formula # Why skip npm install? Read https://github.com/mxcl/homebrew/pull/8784. args = ["--prefix=#{prefix}", "--without-npm"] - args << "--debug" if ARGV.include? '--debug' + args << "--debug" if ARGV.include? '--enable-debug' system "./configure", *args system "make install" |
