From cabc02b0b9fd64ed9c60d865f08dfd9bd33eb795 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Thu, 7 Jul 2005 11:25:57 +0000 Subject: [PATCH] * bootstrap (AUTORECONF): New variable to allow user overriding of autoreconf path. --- ChangeLog | 5 +++++ bootstrap | 13 +++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index cb43eced..f12728b3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-07-07 Ralf Wildenhues + + * bootstrap (AUTORECONF): New variable to allow user overriding of + autoreconf path. + 2005-07-07 Gary V. Vaughan * doc/m4.texinfo (History): Add better notes on the ancestory of diff --git a/bootstrap b/bootstrap index 5e0ecada..ae06b647 100755 --- a/bootstrap +++ b/bootstrap @@ -3,10 +3,11 @@ # helps bootstrapping M4, when checked out from CVS # requires GNU Autoconf, GNU Automake, GNU Gettext and GNU Libtool -: ${AWK="awk"} -: ${SED="sed"} -: ${RM="rm -f"} -: ${GNULIB_TOOL="gnulib-tool"} +: ${AWK=awk} +: ${SED=sed} +: ${RM=rm -f} +: ${GNULIB_TOOL=gnulib-tool} +: ${AUTORECONF=autoreconf} ltdldir=ltdl config_aux_dir=$ltdldir/config @@ -72,8 +73,8 @@ done func_echo "running: libtoolize --ltdl=\"$ltdldir\" --force --copy" libtoolize --ltdl="$ltdldir" --force --copy -func_echo "running: autoreconf --force --verbose --install" -autoreconf --force --verbose --install +func_echo "running: $AUTORECONF --force --verbose --install" +$AUTORECONF --force --verbose --install ( func_echo "generating testsuite" -- 2.11.4.GIT