aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Malcontenti-Wilson2012-01-27 16:55:02 +1100
committerCharlie Sharpsteen2012-01-26 23:28:50 -0800
commitfb72150f68c6808dd64462cbd3610c7ff2d9a169 (patch)
tree4207ee5a0e75e455e4797b6630f8ee4e285763b6 /Library
parent7eee711dced5d0dd1055eb4fe259ff16b7833b30 (diff)
downloadhomebrew-fb72150f68c6808dd64462cbd3610c7ff2d9a169.tar.bz2
fuse4x: Use paths to Mac OS X supplied autotools
Closes #9803. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/fuse4x.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/fuse4x.rb b/Library/Formula/fuse4x.rb
index 30cfc1345..eb060a377 100644
--- a/Library/Formula/fuse4x.rb
+++ b/Library/Formula/fuse4x.rb
@@ -14,7 +14,9 @@ class Fuse4x < Formula
gettext = Formula.factory('gettext')
ENV['ACLOCAL'] = "/usr/bin/aclocal -I#{gettext.share}/aclocal"
- system "autoreconf", "--force", "--install"
+ ENV['AUTOCONF'] = "/usr/bin/autoconf"
+ ENV['AUTOMAKE'] = "/usr/bin/automake"
+ system "/usr/bin/autoreconf", "--force", "--install"
system "./configure", "--disable-dependency-tracking", "--disable-debug", "--disable-static", "--prefix=#{prefix}"
system "make install"