svn commit: r368346 - branches/2014Q3/Mk

Bryan Drewery bdrewery at FreeBSD.org
Tue Sep 16 20:44:13 UTC 2014


Author: bdrewery
Date: Tue Sep 16 20:44:12 2014
New Revision: 368346
URL: http://svnweb.freebsd.org/changeset/ports/368346
QAT: https://qat.redports.org/buildarchive/r368346/

Log:
  MFH r368345:
  
    - Fix off-by-one with 'make checksum' which caused it to not properly
        download files from the last site (distcache).
  
  With hat:	portmgr

Modified:
  branches/2014Q3/Mk/bsd.port.mk
Directory Properties:
  branches/2014Q3/   (props changed)

Modified: branches/2014Q3/Mk/bsd.port.mk
==============================================================================
--- branches/2014Q3/Mk/bsd.port.mk	Tue Sep 16 20:38:13 2014	(r368345)
+++ branches/2014Q3/Mk/bsd.port.mk	Tue Sep 16 20:44:12 2014	(r368346)
@@ -3399,7 +3399,7 @@ do-fetch:
 						continue 2; \
 					else \
 						${ECHO_MSG} "=> Fetched file size mismatch (expected $${CKSIZE}, actual $${actual_size})"; \
-						if [ $${sites_remaining} -gt 1 ]; then \
+						if [ $${sites_remaining} -gt 0 ]; then \
 							${ECHO_MSG} "=> Trying next site"; \
 							${RM} -f $${file}; \
 						fi; \


More information about the svn-ports-branches mailing list