diff options
| author | Xiyue Deng | 2013-09-11 11:27:25 -0700 |
|---|---|---|
| committer | Xiyue Deng | 2013-09-11 11:27:25 -0700 |
| commit | 486b54bc0d05e79cff9fb505be7b86ec7ef597dd (patch) | |
| tree | 8c75fbf936b5538b2843b1183b1e298fd13927cd /Library/Formula | |
| parent | 3ff088fa9b2331b155b9d3da85bf1991bf3d038e (diff) | |
| download | homebrew-486b54bc0d05e79cff9fb505be7b86ec7ef597dd.tar.bz2 | |
pure: regenerate configure/Makefile.
* The backported patches modify configure.ac, which will force
regenerate autotools file on make, and lead to running configure
twice. Run "autoreconf" before configure to avoid this, and add
comments to remove it on next upstream release.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/pure.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Formula/pure.rb b/Library/Formula/pure.rb index 1f2242a54..4955440c5 100644 --- a/Library/Formula/pure.rb +++ b/Library/Formula/pure.rb @@ -34,6 +34,10 @@ class Pure < Formula end def install + # Force regenerate configure/Makefile due to patching + # configure.ac. Remove when new release is available. + system "autoreconf -fiv" + system "./configure", "--disable-debug", "--prefix=#{prefix}", "--enable-release", |
