fuse4x: Use paths to Mac OS X supplied autotools

Closes Homebrew/homebrew#9803.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
This commit is contained in:
Adam Malcontenti-Wilson 2012-01-27 16:55:02 +11:00 committed by Charlie Sharpsteen
parent 4089df2501
commit 9eee8042f5

View file

@ -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"