From: Eric W. <war...@us...> - 2001-11-19 04:35:42
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv11167 Modified Files: autogen.sh Log Message: lisa started putting up the christmas decorations today. Index: autogen.sh =================================================================== RCS file: /cvsroot/gaim/gaim/autogen.sh,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- autogen.sh 2001/10/03 06:04:44 1.11 +++ autogen.sh 2001/11/19 04:35:39 1.12 @@ -39,14 +39,14 @@ echo; echo "Running gettextize, please ignore non-fatal messages...." -echo n | gettextize --copy --force; +echo n | gettextize --copy --force || exit; echo "Running libtoolize, please ignore non-fatal messages...." -echo n | libtoolize --copy --force; +echo n | libtoolize --copy --force || exit; -aclocal -I m4 $ACLOCAL_FLAGS; -autoheader; -automake --add-missing --copy; -autoconf; -automake; +aclocal -I m4 $ACLOCAL_FLAGS || exit; +autoheader || exit; +automake --add-missing --copy || exit; +autoconf || exit; +automake || exit; ./configure $@ |