aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-05-13 17:25:10 -0500
committerJack Nagel2014-05-13 17:28:31 -0500
commit97ee7f13ccbabb4b2be0fb2cf7238ea2e151d2d7 (patch)
treedc151fe512f9f6622cb4f0e89d352b22142ad352
parent4d37215b2337a3b02a81f54e41b4e8f7cd2fe19d (diff)
downloadhomebrew-97ee7f13ccbabb4b2be0fb2cf7238ea2e151d2d7.tar.bz2
imagemagick: fix webp support
-rw-r--r--Library/Formula/imagemagick.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/imagemagick.rb b/Library/Formula/imagemagick.rb
index 9046418c3..507ed3fb0 100644
--- a/Library/Formula/imagemagick.rb
+++ b/Library/Formula/imagemagick.rb
@@ -83,7 +83,7 @@ class Imagemagick < Formula
args << "--without-x" if build.without? 'x11'
args << "--with-fontconfig=yes" if build.with? 'fontconfig'
args << "--with-freetype=yes" if build.with? 'freetype'
- args << "--with-webp=yes" if build.include? 'webp'
+ args << "--with-webp=yes" if build.with? 'webp'
# versioned stuff in main tree is pointless for us
inreplace 'configure', '${PACKAGE_NAME}-${PACKAGE_VERSION}', '${PACKAGE_NAME}'