aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorCharlie Sharpsteen2011-09-20 21:12:37 -0700
committerCharlie Sharpsteen2011-09-20 21:12:37 -0700
commit874bc0a83887c88fd825a1c77e233b2c60c8d690 (patch)
tree4103bf523daa563dcb07a2100bcfaee9afd879da /Library
parentd11a8d251fb163124c48a3c573b78414fafe8874 (diff)
downloadhomebrew-874bc0a83887c88fd825a1c77e233b2c60c8d690.tar.bz2
Boost: Fix --without-python
Looks like `--without-libraries=<library>` is just `--without-<library>`.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/boost.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/boost.rb b/Library/Formula/boost.rb
index a2ac261bf..4bcc8ef24 100644
--- a/Library/Formula/boost.rb
+++ b/Library/Formula/boost.rb
@@ -64,7 +64,7 @@ class Boost < Formula
"install"]
args << "address-model=32_64" << "architecture=x86" << "pch=off" if ARGV.include? "--universal"
- args << "--without-libraries=python" if ARGV.include? "--without-python"
+ args << "--without-python" if ARGV.include? "--without-python"
# we specify libdir too because the script is apparently broken
system "./bootstrap.sh", "--prefix=#{prefix}", "--libdir=#{lib}"