aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-05-16 23:34:38 -0500
committerJack Nagel2014-05-16 23:40:27 -0500
commit6a3de9be7a4242136fa1b34ff977499e48c69b7d (patch)
tree4da2498f8283a662b059ab5e5f54dbbf9d0b8f96
parent2934dcb8c79aa064366fe7d7eabb90a9a6c6c073 (diff)
downloadhomebrew-6a3de9be7a4242136fa1b34ff977499e48c69b7d.tar.bz2
sshfs: remove old automake hack
-rw-r--r--Library/Formula/sshfs.rb17
1 files changed, 6 insertions, 11 deletions
diff --git a/Library/Formula/sshfs.rb b/Library/Formula/sshfs.rb
index 89bbbae0d..36b543435 100644
--- a/Library/Formula/sshfs.rb
+++ b/Library/Formula/sshfs.rb
@@ -14,13 +14,12 @@ class Sshfs < Formula
option 'without-sshnodelay', "Don't compile NODELAY workaround for ssh"
- depends_on 'autoconf' => :build
- depends_on 'automake' => :build
- depends_on :libtool
-
- depends_on 'pkg-config' => :build
- depends_on 'osxfuse'
- depends_on 'glib'
+ depends_on "pkg-config" => :build
+ depends_on "autoconf" => :build
+ depends_on "automake" => :build
+ depends_on "libtool" => :build
+ depends_on "osxfuse"
+ depends_on "glib"
depends_on :xcode
# Fixes issue https://github.com/osxfuse/sshfs/pull/4
@@ -33,10 +32,6 @@ class Sshfs < Formula
]
args << "--disable-sshnodelay" if build.without? 'sshnodelay'
- # Compatibility with Automake 1.13 and newer.
- inreplace 'configure.ac', 'AM_CONFIG_HEADER', 'AC_CONFIG_HEADERS'
- inreplace 'configure.ac', 'AM_INIT_AUTOMAKE', 'AM_INIT_AUTOMAKE([subdir-objects])'
-
system "autoreconf", "--force", "--install"
system "./configure", *args
system "make install"