diff options
| author | Mike McQuaid | 2013-10-01 19:31:38 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2013-10-01 19:31:38 +0100 |
| commit | 15fecb7748177751567484fe5aa0f5ce2aba3e8f (patch) | |
| tree | 3d347319f4d1a8d7e7d705e501259543b32e20e2 /Library/Formula | |
| parent | 3ab3c10968ae02796b7101b8147bb67ae3ecfa7d (diff) | |
| download | homebrew-15fecb7748177751567484fe5aa0f5ce2aba3e8f.tar.bz2 | |
graphicsmagick: invert svg option.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/graphicsmagick.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/graphicsmagick.rb b/Library/Formula/graphicsmagick.rb index 422711d7e..ad20786bf 100644 --- a/Library/Formula/graphicsmagick.rb +++ b/Library/Formula/graphicsmagick.rb @@ -10,7 +10,7 @@ class Graphicsmagick < Formula option 'with-quantum-depth-16', 'Compile with a quantum depth of 16 bit' option 'with-quantum-depth-32', 'Compile with a quantum depth of 32 bit' option 'without-magick-plus-plus', 'disable build/install of Magick++' - option 'with-svg', 'Compile with svg support' + option 'without-svg', 'Compile without svg support' depends_on :libltdl @@ -66,7 +66,7 @@ class Graphicsmagick < Formula args << "--with-quantum-depth=#{quantum_depth}" if quantum_depth args << "--without-x" unless build.with? 'x11' args << "--without-ttf" if build.without? 'freetype' - args << "--without-xml" unless build.with? 'svg' + args << "--without-xml" if build.without? 'svg' args << "--without-lcms" unless build.with? 'little-cms' args << "--without-lcms2" unless build.with? 'little-cms2' |
