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.
This commit is contained in:
Xiyue Deng 2013-09-11 11:27:25 -07:00
parent 89edf0200f
commit 30bfe94d9d

View file

@ -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",