summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2007-05-12 15:48:16 +0000
committerOlly Betts <olly@survex.com>2007-05-12 15:48:16 +0000
commit3c359c3e2e2e506c528bb9e526e198cdf392acf0 (patch)
tree2d318182e3b05b26cffbbd5ed9999ff0a9dd997d /autogen.sh
parent4aaf48d65055bd68cc55e81f915af39693e9a7a6 (diff)
downloadswig-3c359c3e2e2e506c528bb9e526e198cdf392acf0.tar.gz
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
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh8
1 files 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}