diff options
| author | Adam Vandenberg | 2013-01-11 13:34:58 -0800 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-01-11 13:35:20 -0800 | 
| commit | 0801a86b67020da901c0deff99d552384b728f0f (patch) | |
| tree | d791f302524df5f6b3f45905f670c24b56e1388f /Library/Formula/libnet.rb | |
| parent | 7f695210e2e2f917d0b52f068da22ea5d712c096 (diff) | |
| download | homebrew-0801a86b67020da901c0deff99d552384b728f0f.tar.bz2 | |
libnet: fix for automake 1.13
Closes #17018.
Diffstat (limited to 'Library/Formula/libnet.rb')
| -rw-r--r-- | Library/Formula/libnet.rb | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/Library/Formula/libnet.rb b/Library/Formula/libnet.rb index 79ead4827..e1908bc85 100644 --- a/Library/Formula/libnet.rb +++ b/Library/Formula/libnet.rb @@ -18,6 +18,13 @@ class Libnet < Formula    end    def install +    # Compatibility with Automake 1.13 and newer. +    # Reported upstream: +    # https://github.com/sam-github/libnet/issues/28 +    mv 'configure.in', 'configure.ac' +    inreplace 'configure.ac', 'AM_CONFIG_HEADER', 'AC_CONFIG_HEADERS' +    (buildpath/'m4').mkpath +      system "autoreconf --force --install"      system "./configure", "--disable-dependency-tracking",                            "--prefix=#{prefix}"  | 
