From owner-svn-ports-all@FreeBSD.ORG Tue Sep 16 20:44:13 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1DF4A2BD; Tue, 16 Sep 2014 20:44:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 099CEA39; Tue, 16 Sep 2014 20:44:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8GKiCTd078222; Tue, 16 Sep 2014 20:44:12 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8GKiCJo078221; Tue, 16 Sep 2014 20:44:12 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201409162044.s8GKiCJo078221@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Tue, 16 Sep 2014 20:44:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r368346 - branches/2014Q3/Mk X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Sep 2014 20:44:13 -0000 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; \