Boost: Fix --without-python

Looks like `--without-libraries=<library>` is just `--without-<library>`.
master
Charlie Sharpsteen 2011-09-20 21:12:37 -07:00
parent 7d1b6d33e3
commit 6d44e98bd7
1 changed files with 1 additions and 1 deletions

View File

@ -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}"