diff options
| author | Jack Nagel | 2013-07-19 17:46:09 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-07-19 17:51:18 -0500 |
| commit | ab5285c7d353c7df8389afa9dbb9f06eabb4a2bc (patch) | |
| tree | c633f50b9f2abc75510cf17cddaeb80ad75d382f /Library/Formula | |
| parent | 45120b4b8c36fc09dcbacd9fc6e4ac45e597ac45 (diff) | |
| download | homebrew-ab5285c7d353c7df8389afa9dbb9f06eabb4a2bc.tar.bz2 | |
little-cms: fix universal build
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/little-cms.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/little-cms.rb b/Library/Formula/little-cms.rb index e177cfd1d..12ce79113 100644 --- a/Library/Formula/little-cms.rb +++ b/Library/Formula/little-cms.rb @@ -13,8 +13,10 @@ class LittleCms < Formula def install ENV.universal_binary if build.universal? - args = ["--disable-debug", "--prefix=#{prefix}"] + args = %W{--disable-dependency-tracking --disable-debug --prefix=#{prefix}} args << "--with-python" if build.with? "python" + args << "--without-tiff" unless build.with? "tiff" + args << "--without-jpeg" unless build.with? "jpeg" system "./configure", *args system "make install" |
