jfclere 02/02/07 07:17:11 Modified: webapp/support buildconf.sh Log: cd .. was not returning to the initial path on ReliantUnix. configure was not created. Revision Changes Path 1.8 +3 -3 jakarta-tomcat-connectors/webapp/support/buildconf.sh Index: buildconf.sh =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/webapp/support/buildconf.sh,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- buildconf.sh 1 Nov 2001 22:20:52 -0000 1.7 +++ buildconf.sh 7 Feb 2002 15:17:10 -0000 1.8 @@ -59,7 +59,7 @@ # ------------------------------------------------------------------------- # # Author Pier Fumagalli <mailto:[EMAIL PROTECTED]> # Author Jon S. Stevens <mailto:[EMAIL PROTECTED]> -# Version $Id: buildconf.sh,v 1.7 2001/11/01 22:20:52 pier Exp $ +# Version $Id: buildconf.sh,v 1.8 2002/02/07 15:17:10 jfclere Exp $ # ------------------------------------------------------------------------- # if [ ! -f ./configure.in ] @@ -70,9 +70,9 @@ if [ -f "./apr/buildconf" ] then echo "--- Running the \"buildconf\" script for APR" - cd ./apr + ( cd ./apr sh ./buildconf - cd .. + ) else echo "--- Cannot run APR \"buildconf\" script" echo "Don't a forget to download a copy of the APR sources, and to run"
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>