From a2a23800bfd4c9513192c42c90c500686a1956b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 6 Aug 2009 18:38:16 +0100 Subject: [PATCH] autogen.sh: older aclocals don't like -I. so use -I . instead --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index b29b7c8da8..944c1d6787 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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