summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2005-06-27 00:07:13 +0000
committerMichael Jennings <mej@kainx.org>2005-06-27 00:07:13 +0000
commitf79bf997cf47559f97cec96c2ce39cc98141b2ec (patch)
tree0879adde5104fc3de88d69d07cc725a541fdd9c8 /autogen.sh
parent80e9c020d442e2c4fef233c89734580e6bc02ac5 (diff)
downloadeterm-f79bf997cf47559f97cec96c2ce39cc98141b2ec.tar.gz
Sun Jun 26 21:05:03 2005 Michael Jennings (mej)
Attempt to fix autogen.sh for Gentoo and Solaris. Detect and avoid E 0.17 faking E 0.16.x's IPC mechanisms. ---------------------------------------------------------------------- SVN revision: 15535
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 c900c4f..c494424 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -49,13 +49,13 @@ done
export LIBTOOLIZE ACLOCAL AUTOCONF AUTOHEADER AUTOMAKE
# Check for existing libast.m4 we can use. Use the local one if not.
-if test ! -f "`$ACLOCAL --print-ac-dir`/libast.m4"; then
- ACLOCAL_FLAGS="-I . $ACLOCAL_FLAGS"
-fi
+#if test ! -f "`$ACLOCAL --print-ac-dir`/libast.m4"; then
+# ACLOCAL_FLAGS="-I . $ACLOCAL_FLAGS"
+#fi
# Run the stuff.
(set -x && $LIBTOOLIZE -c -f)
-(set -x && $ACLOCAL $ACLOCAL_FLAGS)
+(set -x && $ACLOCAL -I . $ACLOCAL_FLAGS)
(set -x && $AUTOCONF)
(set -x && $AUTOHEADER)
(set -x && $AUTOMAKE -a -c)