GNOME Bugzilla – Bug 496162
Fix autogen.sh when srcdir != builddir
Last modified: 2007-11-12 17:46:23 UTC
Index: autogen.sh =================================================================== --- autogen.sh (revision 2926) +++ autogen.sh (working copy) @@ -3,11 +3,12 @@ srcdir=`dirname $0` test -z "$srcdir" && srcdir=. +srcdir=`cd $srcdir && pwd` REQUIRED_AUTOMAKE_VERSION=1.8 PKG_NAME="PyGTK" -ACLOCAL_FLAGS="-I `pwd`/m4 $ACLOCAL_FLAGS" +ACLOCAL_FLAGS="-I $srcdir/m4 $ACLOCAL_FLAGS" #name of package PKG_NAME=${PKG_NAME:-Package}
*** Bug 409235 has been marked as a duplicate of this bug. ***
Looks good, Go ahead and commit.
Done.