autogen.sh: older aclocals don't like -I. so use -I . instead
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 6 Aug 2009 17:38:16 +0000 (18:38 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 6 Aug 2009 17:38:16 +0000 (18:38 +0100)
autogen.sh

index b29b7c8..944c1d6 100755 (executable)
@@ -82,7 +82,7 @@ patch -p0 < common/gettext.patch
 if test -f acinclude.m4; then rm acinclude.m4; fi
 
 tool_run "$libtoolize" "--copy --force"
-tool_run "$aclocal" "-I common/m4 -I. $ACLOCAL_FLAGS"
+tool_run "$aclocal" "-I common/m4 -I . $ACLOCAL_FLAGS"
 tool_run "$autoheader"
 
 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo