diff options
| author | Jack Nagel | 2013-06-03 17:27:25 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-06-03 17:27:25 -0500 |
| commit | b4592a59dc0ec528322ae75cd74bef2f489ba657 (patch) | |
| tree | f80f09585141c953ccfb08501bf7b2ab8be89a51 | |
| parent | 308fd9c05f4ca0d7edbf09975c12f52f2994b1c7 (diff) | |
| download | homebrew-b4592a59dc0ec528322ae75cd74bef2f489ba657.tar.bz2 | |
libpst: fix option
| -rw-r--r-- | Library/Formula/libpst.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/libpst.rb b/Library/Formula/libpst.rb index 5e2d86233..1d9a47e6b 100644 --- a/Library/Formula/libpst.rb +++ b/Library/Formula/libpst.rb @@ -9,14 +9,14 @@ class Libpst < Formula depends_on 'boost' depends_on :python => :optional - depends_on 'gd' if build.with? 'pst2dii' + depends_on 'gd' if build.include? 'pst2dii' def install args = %W[ --disable-dependency-tracking --prefix=#{prefix} ] - args << '--disable-dii' unless build.with? 'pst2dii' + args << '--disable-dii' unless build.include? 'pst2dii' if build.with? 'python' # ENV['PYTHON_EXTRA_LDFLAGS'] = '-u _PyMac_Error' args << '--enable-python' << '--with-boost-python=mt' |
