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 15:00:37 UTC

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

Author: danielsh
Date: Sun Apr  3 13:00:36 2011
New Revision: 1088275

URL: http://svn.apache.org/viewvc?rev=1088275&view=rev
Log:
* tools/dist/construct-rolling-environment.sh
  (create_prefix): Save the swig tarball to its correct name.

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=1088275&r1=1088274&r2=1088275&view=diff
==============================================================================
--- subversion/trunk/tools/dist/construct-rolling-environment.sh (original)
+++ subversion/trunk/tools/dist/construct-rolling-environment.sh Sun Apr  3 13:00:36 2011
@@ -77,7 +77,8 @@ setup() {
 create_prefix() {
     wget -nc http://ftp.gnu.org/gnu/autoconf/$AUTOCONF.tar.bz2
     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"
+    wget -nc -O $SWIG.tar.gz \
+             "http://sourceforge.net/projects/swig/files/swig/$SWIG/$SWIG.tar.gz/download?use_mirror=$SOURCEFORGE_MIRROR"
 
     PATH=$PREFIX/bin:$PATH; export PATH