[Cppunit-cvs] cppunit autogen.sh,1.4,1.5
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2006-06-29 18:48:45
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv16377 Modified Files: autogen.sh Log Message: * autogen.sh: applied patch #1449380 to allow running autogen on Mac OS X. Index: autogen.sh =================================================================== RCS file: /cvsroot/cppunit/cppunit/autogen.sh,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** autogen.sh 20 Jun 2001 14:17:37 -0000 1.4 --- autogen.sh 29 Jun 2006 18:45:37 -0000 1.5 *************** *** 7,11 **** aclocal $ACLOCAL_FLAGS || \ aclocal $ACLOCAL_FLAGS -I /usr/local/share/aclocal ! libtoolize --force autoheader automake --add-missing --- 7,20 ---- aclocal $ACLOCAL_FLAGS || \ aclocal $ACLOCAL_FLAGS -I /usr/local/share/aclocal ! ! for l in libtoolize glibtoolize; ! do ! ($l --version) < /dev/null > /dev/null 2>&1 && { ! LIBTOOLIZE=$l ! break ! } ! done ! ! $LIBTOOLIZE --force autoheader automake --add-missing |