From e07a2c7d8bd47965dc1fc19a2893815d0eb11c2f Mon Sep 17 00:00:00 2001 From: xtraeme Date: Fri, 26 Aug 2005 14:47:30 +0000 Subject: _RESUME_TRANSFER: only try to get the value of the temp file when it's available. --- mk/bsd.pkg.mk | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'mk') diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index f61c6da3c32..dbc1758b73d 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1717 2005/08/18 19:24:15 jlam Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1718 2005/08/26 14:47:30 xtraeme Exp $ # # This file is in the public domain. # @@ -1178,7 +1178,6 @@ _RESUME_TRANSFER= \ ${RM} $$tfile; \ fi; \ need_fetch=no; \ - break; \ elif [ "$$osize" -lt "$$tsize" -a ! -f "$$tfile" ]; then \ ${CP} $$ofile $$tfile; \ dsize=`${WC} -c < $$tfile`; \ @@ -1187,7 +1186,9 @@ _RESUME_TRANSFER= \ dsize=`${WC} -c < $$tfile`; \ need_fetch=yes; \ else \ - dsize=`${WC} -c < $$tfile`; \ + if [ -f "$$tfile" ]; then \ + dsize=`${WC} -c < $$tfile`; \ + fi; \ need_fetch=yes; \ fi; \ if [ "$$need_fetch" = "no" ]; then \ -- cgit v1.2.3