diff options
author | Max Kellermann <max@duempel.org> | 2009-01-05 18:00:04 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-05 18:00:04 +0100 |
commit | af521599d11ac5a33081fa5ab88cb24225b03aa1 (patch) | |
tree | cfed23119a43540df0b6831cf8f814854a0d90df | |
parent | b9312c18e5160f853f2fba987459a6f319b18f79 (diff) | |
download | mpd-af521599d11ac5a33081fa5ab88cb24225b03aa1.tar.gz mpd-af521599d11ac5a33081fa5ab88cb24225b03aa1.tar.xz mpd-af521599d11ac5a33081fa5ab88cb24225b03aa1.zip |
autogen.sh: removed $PWD from aclocal call
This allows aclocal to generate the correct m4/*.m4 dependencies for
the "dist" target.
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index 8c02d61ae..baee6c3e6 100755 --- a/autogen.sh +++ b/autogen.sh @@ -8,7 +8,7 @@ glib-gettextize --force --copy # add aclocal.m4 to current dir echo "aclocal..." -aclocal -I $PWD/m4 +aclocal -I m4 # This generates the configure script from configure.in echo "autoconf..." |