diff options
| author | Misty De Meo | 2012-03-21 22:17:01 -0500 |
|---|---|---|
| committer | Misty De Meo | 2012-03-21 22:29:09 -0500 |
| commit | 93ae2b0ccb4f049517b19c9b253f7db8d6a8571d (patch) | |
| tree | 1cf3dc400aa630a925e80f7096abc53eccea96ca /Library/Formula | |
| parent | d2f075da96407bebe8a3bd6357b573a38c410938 (diff) | |
| download | homebrew-93ae2b0ccb4f049517b19c9b253f7db8d6a8571d.tar.bz2 | |
fuse4x: always depend on automake + libtool
Fixes #10853.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/fuse4x.rb | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Library/Formula/fuse4x.rb b/Library/Formula/fuse4x.rb index 7e6188ba9..4347e6cc8 100644 --- a/Library/Formula/fuse4x.rb +++ b/Library/Formula/fuse4x.rb @@ -5,14 +5,11 @@ class Fuse4x < Formula url 'https://github.com/fuse4x/fuse.git', :tag => "fuse4x_0_9_0" version "0.9.0" + depends_on "automake" => :build + depends_on "libtool" => :build depends_on 'gettext' depends_on 'fuse4x-kext' - if MacOS.xcode_version >= "4.3" - depends_on "automake" => :build - depends_on "libtool" => :build - end - def install # Build universal if the hardware can handle it---otherwise 32 bit only MacOS.prefer_64_bit? ? ENV.universal_binary : ENV.m32 |
