You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by jf...@apache.org on 2002/02/07 16:17:11 UTC

cvs commit: jakarta-tomcat-connectors/webapp/support buildconf.sh

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 <ma...@betaversion.org>
   # Author Jon S. Stevens <ma...@latchkey.com>
  -# 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:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>