diff options
| author | Charlie Sharpsteen | 2011-09-20 21:12:37 -0700 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-09-20 21:12:37 -0700 |
| commit | 874bc0a83887c88fd825a1c77e233b2c60c8d690 (patch) | |
| tree | 4103bf523daa563dcb07a2100bcfaee9afd879da /Library | |
| parent | d11a8d251fb163124c48a3c573b78414fafe8874 (diff) | |
| download | homebrew-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.rb | 2 |
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}" |
