diff options
| author | Max Howell | 2012-02-27 12:21:50 +0000 |
|---|---|---|
| committer | Max Howell | 2012-02-27 12:21:50 +0000 |
| commit | e8bb54b9cffe0c134c0fe894c065092d5a88a86c (patch) | |
| tree | 721d22ffaf2f6198c00c6193656f94f1d0d9a210 /Library | |
| parent | b76d52028586be60f018943d478c26b70bceaf3e (diff) | |
| download | homebrew-e8bb54b9cffe0c134c0fe894c065092d5a88a86c.tar.bz2 | |
Fix fuse4x autoreconf errors
Also removed the ENV vars since we set this stuff higher up now, and it compiled. So I'm guessing we're good.
Closes #10524.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/fuse4x.rb | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Library/Formula/fuse4x.rb b/Library/Formula/fuse4x.rb index 133c3987e..4c649c53c 100644 --- a/Library/Formula/fuse4x.rb +++ b/Library/Formula/fuse4x.rb @@ -13,11 +13,7 @@ class Fuse4x < Formula # Build universal if the hardware can handle it---otherwise 32 bit only MacOS.prefer_64_bit? ? ENV.universal_binary : ENV.m32 - gettext = Formula.factory('gettext') - ENV['ACLOCAL'] = "aclocal -I#{gettext.share}/aclocal" - ENV['AUTOCONF'] = "autoconf" - ENV['AUTOMAKE'] = "automake" - system "/usr/bin/autoreconf", "--force", "--install" + system "autoreconf", "--force", "--install" system "./configure", "--disable-dependency-tracking", "--disable-debug", "--disable-static", "--prefix=#{prefix}" system "make install" |
