diff options
| author | Max Howell | 2012-02-28 17:18:43 +0000 |
|---|---|---|
| committer | Max Howell | 2012-02-28 17:18:43 +0000 |
| commit | 74b4c03ddcd0cfe0a17330030ab7944ea06eb7fd (patch) | |
| tree | e454a20ea17d9c3d870e0c5b90b54ef6d840a603 /Library/Formula | |
| parent | 90b0545c6ffc1093f8618cbc0cf38a0fd3068e68 (diff) | |
| download | homebrew-74b4c03ddcd0cfe0a17330030ab7944ea06eb7fd.tar.bz2 | |
Fuse4x depends_on libtool too
Refs #10524.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/fuse4x.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Library/Formula/fuse4x.rb b/Library/Formula/fuse4x.rb index 4c649c53c..2d44c3caf 100644 --- a/Library/Formula/fuse4x.rb +++ b/Library/Formula/fuse4x.rb @@ -7,7 +7,11 @@ class Fuse4x < Formula depends_on 'gettext' depends_on 'fuse4x-kext' - depends_on "automake" if MacOS.xcode_version >= "4.3" + + if MacOS.xcode_version >= "4.3" + depends_on "automake" + depends_on "libtool" + end def install # Build universal if the hardware can handle it---otherwise 32 bit only |
