diff options
Diffstat (limited to 'Library/Formula/sshfs.rb')
| -rw-r--r-- | Library/Formula/sshfs.rb | 17 |
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" |
