diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2013-03-13 02:20:47 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2013-03-13 02:20:47 +0000 |
commit | 58a70683ec9ae09c83ce0947076299a86f6f6bf6 (patch) | |
tree | 199e47f7351d53587754c1ff1885f147613b3427 /Mk/bsd.port.mk | |
parent | 5809763e96bb505964359752b996b87cfd04226a (diff) | |
download | FreeBSD-ports-58a70683ec9ae09c83ce0947076299a86f6f6bf6.zip FreeBSD-ports-58a70683ec9ae09c83ce0947076299a86f6f6bf6.tar.gz |
- Fix fetch-urlall-list fetch-url-list fetch-url-list-int targets
incorrectly looking at distinfo data. These were copied from
do-fetch at some point, but they do not actually run FETCH_CMD,
so the DIR and CKSIZE vars are not needed.
PR: ports/175717
Submitted by: amdmi3
With hat: portmgr
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index fe5f3d8..c0af684 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -4720,8 +4720,6 @@ fetch-url-list-int: SORTED_MASTER_SITES_CMD_TMP="${SORTED_MASTER_SITES_DEFAULT_CMD}" ; \ fi ; \ for site in `eval $$SORTED_MASTER_SITES_CMD_TMP ${_RANDOMIZE_SITES}`; do \ - DIR=${DIST_SUBDIR:S/\//\\\\\//g:S/./\\\\./g:S/+/\\\\+/g:S/?/\\\\?/g}; \ - CKSIZE=`${AWK} "/^SIZE \($${DIR:+$$DIR\/}$$fileptn\)/"'{print $$4}' ${DISTINFO_FILE}`; \ case $${file} in \ */*) args="-o $${file} $${site}$${file}";; \ *) args=$${site}$${file};; \ @@ -4752,8 +4750,6 @@ fetch-url-list-int: SORTED_PATCH_SITES_CMD_TMP="${SORTED_PATCH_SITES_DEFAULT_CMD}" ; \ fi ; \ for site in `eval $$SORTED_PATCH_SITES_CMD_TMP ${_RANDOMIZE_SITES}`; do \ - DIR=${DIST_SUBDIR:S/\//\\\\\//g:S/./\\\\./g:S/+/\\\\+/g:S/?/\\\\?/g}; \ - CKSIZE=`${AWK} "/^SIZE \($${DIR:+$$DIR\/}$$fileptn\)/"'{print $$4}' ${DISTINFO_FILE}`; \ case $${file} in \ */*) args="-o $${file} $${site}$${file}";; \ *) args=$${site}$${file};; \ |