Fix autogen.sh to automatically include the local m4 directory, used as a

fallback if system-wide defs are not found.
This commit is contained in:
gbeauche 2007-06-13 13:27:40 +00:00
parent 7adb1cace9
commit 03833e4c56

View File

@ -34,6 +34,10 @@ if test "$DIE" -eq 1; then
exit 1
fi
if test -z "$ACLOCAL_FLAGS"; then
ACLOCAL_FLAGS="-I `aclocal --print-ac-dir` -I `dirname $0`/m4"
fi
aclocalinclude="$ACLOCAL_FLAGS"; \
(echo $_echo_n " + Running aclocal: $_echo_c"; \
aclocal $aclocalinclude; \