From: Sean E. <sea...@us...> - 2002-09-14 07:47:39
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv26507 Modified Files: autogen.sh Log Message: This will help aclocal find your gtk2 .m4 files if you have them installed in a place autoconf can't find them. Thanks Ethan. Index: autogen.sh =================================================================== RCS file: /cvsroot/gaim/gaim/autogen.sh,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- autogen.sh 26 Aug 2002 04:04:10 -0000 1.23 +++ autogen.sh 14 Sep 2002 07:47:36 -0000 1.24 @@ -57,6 +57,10 @@ echo "Running libtoolize, please ignore non-fatal messages...." echo n | libtoolize --copy --force || exit; +if test -d /usr/local/share/aclocal ; then + ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I /usr/local/share/aclocal" +fi + aclocal -I m4 $ACLOCAL_FLAGS || exit; autoheader || exit; automake --add-missing --copy; |