hardcode aclocal-1.4/automake-1.4 so that users with both automake 1.6 and
authorHavoc Pennington <hp@pobox.com>
Sun, 18 Aug 2002 22:21:32 +0000 (22:21 +0000)
committerHavoc Pennington <hp@src.gnome.org>
Sun, 18 Aug 2002 22:21:32 +0000 (22:21 +0000)
2002-08-18  Havoc Pennington  <hp@pobox.com>

* autogen.sh: hardcode aclocal-1.4/automake-1.4 so that users with
both automake 1.6 and 1.4 installed get the right automake. Means
compilation from CVS will now require the latest automake 1.4
release, or manually creating symlinks called "automake-1.4" and
"aclocal-1.4"

ChangeLog
autogen.sh

index 250ba68..d186952 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2002-08-18  Havoc Pennington  <hp@pobox.com>
+
+       * autogen.sh: hardcode aclocal-1.4/automake-1.4 so that users with
+       both automake 1.6 and 1.4 installed get the right automake. Means
+       compilation from CVS will now require the latest automake 1.4
+       release, or manually creating symlinks called "automake-1.4" and
+       "aclocal-1.4"
+
 2002-08-16  Padraig O'Briain  <padraig.obriain@sun.com>
 
        These changes improve the quality of the documentation by adding
index 2a3d3cb..fe05456 100755 (executable)
@@ -38,7 +38,7 @@ fi
 }
 
 have_automake=false
-if automake --version < /dev/null > /dev/null 2>&1 ; then
+if automake-1.4 --version < /dev/null > /dev/null 2>&1 ; then
        automake_version=`automake --version | grep 'automake (GNU automake)' | sed 's/^[^0-9]*\(.*\)/\1/'`
        case $automake_version in
           1.2*|1.3*|1.4) 
@@ -72,9 +72,9 @@ if test -z "$AUTOGEN_SUBDIR_MODE"; then
         fi
 fi
 
-aclocal $ACLOCAL_FLAGS
+aclocal-1.4 $ACLOCAL_FLAGS
 
-automake -a $am_opt
+automake-1.4 -a $am_opt
 autoconf
 cd $ORIGDIR