summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart vdr. Meulen <bartvdrmeulen@gmail.com>2010-04-09 19:04:24 (GMT)
committerBart vdr. Meulen <bartvdrmeulen@gmail.com>2010-04-09 19:04:24 (GMT)
commit1ef028c7e6bc470e9b16c6ba3b076ac26583b4e7 (patch)
tree110646128a520e848aeedda1e068fb9fe99ab07e
parent58de741ecff404b4448bdaa446c2bb6e7eb53b48 (diff)
[CT-NG:patch 05/19] Force autoreconf for mpfr
In some exotic case the autoreconf step of mpfr is not executed (correctly) leaving an incorrect version number for libtool in the configure script. After extracting the sources files, force autoreconf to be executed. Signed-off-by: Bart vdr. Meulen <bartvdrmeulen@gmail.com>
-rw-r--r--scripts/build/companion_libs/mpfr.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/companion_libs/mpfr.sh b/scripts/build/companion_libs/mpfr.sh
index 7787d8c..1c14c67 100644
--- a/scripts/build/companion_libs/mpfr.sh
+++ b/scripts/build/companion_libs/mpfr.sh
@@ -34,7 +34,7 @@ do_mpfr_extract() {
CT_Pushd "${CT_SRC_DIR}/mpfr-${CT_MPFR_VERSION}"
if [ ! -f .autoreconf.ct-ng ]; then
CT_DoLog DEBUG "Running autoreconf"
- CT_DoExecLog ALL autoreconf
+ CT_DoExecLog ALL autoreconf -fi
touch .autoreconf.ct-ng
fi
CT_Popd