Code

autogen.sh: removed $PWD from aclocal call
authorMax Kellermann <max@duempel.org>
Mon, 5 Jan 2009 17:00:04 +0000 (18:00 +0100)
committerMax Kellermann <max@duempel.org>
Mon, 5 Jan 2009 17:00:04 +0000 (18:00 +0100)
This allows aclocal to generate the correct m4/*.m4 dependencies for
the "dist" target.

autogen.sh

index 8c02d61ae60d1dc5c444e76f75d6efabb3258545..baee6c3e6971398a329e2f0af4a039d506e1e970 100755 (executable)
@@ -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..."