From 465b4f76056da5f847d2190bc04e4b6039eb780c Mon Sep 17 00:00:00 2001 From: Charlie Sharpsteen Date: Sat, 5 Jan 2013 22:00:04 -0800 Subject: sshfs: Restore compatibility with automake Replace depreciated `AM_CONFIG_HEADER` macro, removed in automake 1.13, with `AC_CONFIG_HEADERS`. Fixes #16919. --- Library/Formula/sshfs.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Library/Formula/sshfs.rb') diff --git a/Library/Formula/sshfs.rb b/Library/Formula/sshfs.rb index 5871f2f31..f6d5a7eea 100644 --- a/Library/Formula/sshfs.rb +++ b/Library/Formula/sshfs.rb @@ -13,6 +13,9 @@ class Sshfs < Formula depends_on 'glib' def install + # Compatibility with Automake 1.13 and newer. + inreplace 'configure.ac', 'AM_CONFIG_HEADER', 'AC_CONFIG_HEADERS' + system "autoreconf", "--force", "--install" system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" -- cgit v1.2.3