summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHavoc Pennington <hp@pobox.com>2002-08-18 22:22:16 +0000
committerHavoc Pennington <hp@src.gnome.org>2002-08-18 22:22:16 +0000
commit775b9504328457fa810d1e3bb2d1a44de2d2c033 (patch)
treee3e50aa491d62fb43016d7bc76b35048b6f36726
parentcf6325b206c91b2edd48e05368be9f3de46da91c (diff)
downloadlibxslt-775b9504328457fa810d1e3bb2d1a44de2d2c033.tar.gz
libxslt-775b9504328457fa810d1e3bb2d1a44de2d2c033.tar.bz2
libxslt-775b9504328457fa810d1e3bb2d1a44de2d2c033.zip
hardcode aclocal-1.4/automake-1.4 so that users with both automake 1.6 and
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"
-rw-r--r--ChangeLog8
-rwxr-xr-xautogen.sh6
2 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6f6b43e9..f6d92776 100644
--- 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"
+
Wed Aug 14 18:54:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
* configure.in python/Makefile.am: AMD x86-64 induced changes from
diff --git a/autogen.sh b/autogen.sh
index c39f5cc7..5548f694 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -24,7 +24,7 @@ DIE=0
DIE=1
}
-(automake --version) < /dev/null > /dev/null 2>&1 || {
+(automake-1.4 --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have automake installed to compile gnome-xml."
echo "Get ftp://ftp.cygnus.com/pub/home/tromey/automake-1.2d.tar.gz"
@@ -49,9 +49,9 @@ fi
echo "Running libtoolize..."
libtoolize --copy --force
echo "Running aclocal..."
-aclocal $ACLOCAL_FLAGS
+aclocal-1.4 $ACLOCAL_FLAGS
echo "Running automake..."
-automake --add-missing
+automake-1.4 --add-missing
echo "Running autoconf..."
autoconf