From 3c359c3e2e2e506c528bb9e526e198cdf392acf0 Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Sat, 12 May 2007 15:48:16 +0000 Subject: [PATCH] Allow particular versions of aclocal, autoheader, automake, and autoconf to be specified by setting environmental variables ACLOCAL, etc. The default is to just use "aclocal", etc as before. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9807 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- autogen.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/autogen.sh b/autogen.sh index 270ef0e4a..86e9ae210 100755 --- a/autogen.sh +++ b/autogen.sh @@ -8,7 +8,7 @@ set -x test -d Tools/config || mkdir Tools/config -aclocal -I Tools/config -autoheader -automake --add-missing --copy --force-missing -autoconf +${ACLOCAL-aclocal} -I Tools/config +${AUTOHEADER-autoheader} +${AUTOMAKE-automake} --add-missing --copy --force-missing +${AUTOCONF-autoconf}