aboutsummaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2005-04-19 22:27:05 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2005-04-19 22:27:05 +0000
commit6b90d6085e06758dde6441656b2e779b06446e5c (patch)
tree7bea11cf5f55308e2f9574c5c143609f05c244a4 /autogen.sh
parent9b5d52aab65358c11e5344e61e8c9a039a850e90 (diff)
Allow automake and aclocal to share a common version number suffix, since
they come from the same package. svn path=/trunk/; revision=14143
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 529aa10a2b..55dcfd63a8 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -7,9 +7,14 @@
DIE=true
PROJECT="Ethereal"
-ACLOCAL=aclocal
+# If you are going to use the non-default name for automake becase your OS
+# installaion has multiple versions, you need to call both aclocal and automake
+# with that version number, as they come from the same package.
+#AM_VERSION='-1.8'
+
+ACLOCAL=aclocal$AM_VERSION
AUTOHEADER=autoheader
-AUTOMAKE=automake
+AUTOMAKE=automake$AM_VERSION
AUTOCONF=autoconf
# Check for python. There's no "--version" option!