diff options
| author | Jack Nagel | 2013-01-14 21:08:30 -0600 | 
|---|---|---|
| committer | Jack Nagel | 2013-01-14 21:12:26 -0600 | 
| commit | 19c2e5ae8fa375982f3373a520529c74607065a8 (patch) | |
| tree | 144876bb1da300c5efb12d71a0f9f655f8e9312d /Library/Formula/gnu-smalltalk.rb | |
| parent | 70b778d1018e84d8a005008dffad156e6f7535d3 (diff) | |
| download | homebrew-19c2e5ae8fa375982f3373a520529c74607065a8.tar.bz2 | |
gnu-smalltalk: automake 1.13 compatibility
Fixes #17062.
Diffstat (limited to 'Library/Formula/gnu-smalltalk.rb')
| -rw-r--r-- | Library/Formula/gnu-smalltalk.rb | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/Library/Formula/gnu-smalltalk.rb b/Library/Formula/gnu-smalltalk.rb index 0e0c25532..806a959e4 100644 --- a/Library/Formula/gnu-smalltalk.rb +++ b/Library/Formula/gnu-smalltalk.rb @@ -46,6 +46,11 @@ class GnuSmalltalk < Formula      # disable generational gc in 32-bit      args << "--disable-generational-gc" unless MacOS.prefer_64_bit? +    # Compatibility with Automake 1.13+, fixed upstream +    inreplace %w{configure.ac sigsegv/configure.ac}, +      'AM_CONFIG_HEADER', 'AC_CONFIG_HEADERS' +    inreplace 'snprintfv/configure.ac', 'AM_PROG_CC_STD', '' +      system 'autoreconf', '-ivf'      system "./configure", *args      system "make"  | 
