From bc5429580e6dc0335aaaffc0837788d2c4efb9b6 Mon Sep 17 00:00:00 2001 From: Richard Brown Date: Thu, 30 Oct 2008 10:37:41 +0100 Subject: autogen.sh: don't call aclocal with the $PWD prefix calling aclocal -I PWD/m4 in autogen.sh, rather than aclocal -I m4 is causing autotools to to not include the m4 directory in the dist tarball. This makes it quite hard to regenerate aclocal/configure. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 95d8337a..62e8eb2d 100755 --- a/autogen.sh +++ b/autogen.sh @@ -123,7 +123,7 @@ fi echo "Generating configuration files for $package, please wait...." -ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $PWD/m4" +ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I m4" # /usr/share/aclocal is most likely included by default, already... ac_local_paths=' -- cgit v1.2.3