diff options
| -rw-r--r-- | Library/Formula/sshfs.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/sshfs.rb b/Library/Formula/sshfs.rb index 2c08934fb..2e6faba2d 100644 --- a/Library/Formula/sshfs.rb +++ b/Library/Formula/sshfs.rb @@ -12,7 +12,9 @@ class Sshfs < Formula def install ENV['ACLOCAL'] = "/usr/bin/aclocal -I/usr/share/aclocal -I#{HOMEBREW_PREFIX}/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-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" |
