diff options
author | Richard Brown <rbrown@exherbo.org> | 2008-10-30 10:37:41 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-30 10:37:41 +0100 |
commit | bc5429580e6dc0335aaaffc0837788d2c4efb9b6 (patch) | |
tree | b4b4e04c3de90ea39322e979921b0de11225b3d7 /autogen.sh | |
parent | 5f6383d68ca94af3954587c0e12ad1019dde84d8 (diff) | |
download | mpd-bc5429580e6dc0335aaaffc0837788d2c4efb9b6.tar.gz mpd-bc5429580e6dc0335aaaffc0837788d2c4efb9b6.tar.xz mpd-bc5429580e6dc0335aaaffc0837788d2c4efb9b6.zip |
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.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index 95d8337ac..62e8eb2da 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=' |