diff options
| author | Mike McQuaid | 2013-03-26 13:18:39 +0000 | 
|---|---|---|
| committer | Mike McQuaid | 2013-03-26 13:19:27 +0000 | 
| commit | 2240477462bddbd83f5c98e2cc3ad16451f3f5fc (patch) | |
| tree | 2d90b479be5406bd044e5d5b68f21357e98131a6 /Library/Formula/imagemagick.rb | |
| parent | 158010eb04aecf41985f4cc3f078bef9d02289b8 (diff) | |
| download | homebrew-2240477462bddbd83f5c98e2cc3ad16451f3f5fc.tar.bz2 | |
imagemagick: build source with keg-only libtool.
References #14609.
Closes #18746.
Diffstat (limited to 'Library/Formula/imagemagick.rb')
| -rw-r--r-- | Library/Formula/imagemagick.rb | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/Library/Formula/imagemagick.rb b/Library/Formula/imagemagick.rb index e453da07e..cd5f4b821 100644 --- a/Library/Formula/imagemagick.rb +++ b/Library/Formula/imagemagick.rb @@ -47,6 +47,12 @@ class Imagemagick < Formula      sha1 'b5b3ffb0c4bf9fe247b9fdeea789298c71904a12' => :snow_leopard    end +  def pour_bottle? +    # If libtool is keg-only it currently breaks the bottle. +    # This is a temporary workaround until we have a better fix. +    not Formula.factory('libtool').keg_only? +  end +    skip_clean :la    def install  | 
