summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorRichard Boulton <richard@tartarus.org>2002-02-04 22:42:22 +0000
committerRichard Boulton <richard@tartarus.org>2002-02-04 22:42:22 +0000
commit8ae48af8fb93eed7f74cd4b73b41a34c66777fce (patch)
tree094b099b29654a7a004cae2b65ac8e849b471c1a /autogen.sh
parentfc665b84c7c6c66bc39f25ed4484033ce1fef284 (diff)
Revert aclocal invocation to do cat m4/*.m4 > acinclude.m4 beforehand, rather than adding m4/ to aclocal search path....
Original commit message from CVS: Revert aclocal invocation to do cat m4/*.m4 > acinclude.m4 beforehand, rather than adding m4/ to aclocal search path. Shouldn't cause errors when macros are already present on system, because macros in acinclude.m4 are used in preference.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 81218a40..69d574ad 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -138,7 +138,7 @@ if test -z "$*"; then
fi
echo "+ running aclocal ..."
-aclocal -I m4 $ACLOCAL_FLAGS || {
+cat m4/*.m4 >acinclude.m4;aclocal $ACLOCAL_FLAGS || {
echo
echo "aclocal failed - check that all needed development files are present on system"
exit 1