You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2011/04/03 14:49:10 UTC

svn commit: r1088269 - /subversion/trunk/tools/dist/construct-rolling-environment.sh

Author: danielsh
Date: Sun Apr  3 12:49:10 2011
New Revision: 1088269

URL: http://svn.apache.org/viewvc?rev=1088269&view=rev
Log:
* tools/dist/construct-rolling-environment.sh
  (create_prefix):
    Set $PATH to a value that includes $PREFIX.  Hopefully this will cause
    the later installations in this function to find the tools installed
    earlier in the function.

Modified:
    subversion/trunk/tools/dist/construct-rolling-environment.sh

Modified: subversion/trunk/tools/dist/construct-rolling-environment.sh
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/construct-rolling-environment.sh?rev=1088269&r1=1088268&r2=1088269&view=diff
==============================================================================
--- subversion/trunk/tools/dist/construct-rolling-environment.sh (original)
+++ subversion/trunk/tools/dist/construct-rolling-environment.sh Sun Apr  3 12:49:10 2011
@@ -79,6 +79,8 @@ create_prefix() {
     wget -nc http://ftp.gnu.org/gnu/libtool/$LIBTOOL.tar.gz
     wget -nc "http://sourceforge.net/projects/swig/files/swig/$SWIG/$SWIG.tar.gz/download?use_mirror=$SOURCEFORGE_MIRROR"
 
+    PATH=$PREFIX/bin:$PATH; export PATH
+
     tar jxvf $AUTOCONF.tar.bz2
     cd $AUTOCONF
     ./configure --prefix=$PREFIX