You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2013/12/22 00:19:46 UTC

svn commit: r1552958 - /subversion/trunk/get-deps.sh

Author: breser
Date: Sat Dec 21 23:19:46 2013
New Revision: 1552958

URL: http://svn.apache.org/r1552958
Log:
get-deps.sh: Remove the trailing /download on the zlib URL.

* get-deps.sh:
  (get_zlib): Avoid getting a filename named download.

Suggested by: arfrever

Modified:
    subversion/trunk/get-deps.sh

Modified: subversion/trunk/get-deps.sh
URL: http://svn.apache.org/viewvc/subversion/trunk/get-deps.sh?rev=1552958&r1=1552957&r2=1552958&view=diff
==============================================================================
--- subversion/trunk/get-deps.sh (original)
+++ subversion/trunk/get-deps.sh Sat Dec 21 23:19:46 2013
@@ -101,10 +101,10 @@ get_zlib() {
     test -d $BASEDIR/zlib && return
 
     cd $TEMPDIR
-    $HTTP_FETCH http://sourceforge.net/projects/libpng/files/zlib/$ZLIB_VERSION/$ZLIB.tar.gz/download
+    $HTTP_FETCH http://sourceforge.net/projects/libpng/files/zlib/$ZLIB_VERSION/$ZLIB.tar.gz
     cd $BASEDIR
 
-    gzip -dc $TEMPDIR/download | tar -xf -
+    gzip -dc $TEMPDIR/$ZLIB.tar.gz | tar -xf -
 
     mv $ZLIB zlib
 }