[csw-devel] SF.net SVN: gar:[2542] csw/mgar/gar/v1/gar.lib.mk
dmichelsen at users.sourceforge.net
dmichelsen at users.sourceforge.net
Thu Dec 11 21:24:10 CET 2008
Revision: 2542
http://gar.svn.sourceforge.net/gar/?rev=2542&view=rev
Author: dmichelsen
Date: 2008-12-11 20:24:10 +0000 (Thu, 11 Dec 2008)
Log Message:
-----------
mGAR v1: Add https target and WGET_OPTS
Modified Paths:
--------------
csw/mgar/gar/v1/gar.lib.mk
Modified: csw/mgar/gar/v1/gar.lib.mk
===================================================================
--- csw/mgar/gar/v1/gar.lib.mk 2008-12-11 20:03:54 UTC (rev 2541)
+++ csw/mgar/gar/v1/gar.lib.mk 2008-12-11 20:24:10 UTC (rev 2542)
@@ -41,13 +41,16 @@
# download an http URL (colons omitted)
http//%:
- @wget -T 10 -c -P $(PARTIALDIR) http://$*
+ @wget $(WGET_OPTS) -T 10 -c -P $(PARTIALDIR) http://$*
+https//%:
+ @wget $(WGET_OPTS) -T 10 -c -P $(PARTIALDIR) https://$*
+
# download an ftp URL (colons omitted)
#ftp//%:
# @wget -T 10 -c --passive-ftp -P $(PARTIALDIR) ftp://$*
ftp//%:
- @wget -T 10 -c -P $(PARTIALDIR) ftp://$*
+ @wget $(WGET_OPTS) -T 10 -c -P $(PARTIALDIR) ftp://$*
# link to a local copy of the file
# (absolute path)
@@ -80,6 +83,9 @@
svn-http//%:
@svn co $(SVNHTTP_CO_ARGS) http://$* $(PARTIALDIR)/$(notdir $*)
+svn-https//%:
+ @svn co $(SVNHTTP_CO_ARGS) https://$* $(PARTIALDIR)/$(notdir $*)
+
#################### CHECKSUM RULES ####################
# check a given file's checksum against $(CHECKSUM_FILE) and
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list