diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1996-02-06 21:25:23 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1996-02-06 21:25:23 +0000 |
commit | 42a43db4bb962e2cb6b65ed32863effa01bde91c (patch) | |
tree | 7130e26579774154dfa1ea2d887246b595c8b41a /share/mk | |
parent | 1df738d453217cb9507dd41953034acd1e679014 (diff) | |
download | src-42a43db4bb962e2cb6b65ed32863effa01bde91c.tar.gz src-42a43db4bb962e2cb6b65ed32863effa01bde91c.zip |
Notes
Diffstat (limited to 'share/mk')
-rw-r--r-- | share/mk/bsd.port.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index ede3b84c3e6c..f296e94e6db3 100644 --- a/share/mk/bsd.port.mk +++ b/share/mk/bsd.port.mk @@ -3,7 +3,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.188 1995/11/26 12:35:49 asami Exp $ +# $Id: bsd.port.mk,v 1.189 1995/12/07 14:11:29 jkh Exp $ # # Please view me with 4 column tabs! @@ -491,7 +491,7 @@ do-fetch: ${ECHO_MSG} ">> $$file doesn't seem to exist on this system."; \ for site in ${MASTER_SITES}; do \ ${ECHO_MSG} ">> Attempting to fetch from $${site}."; \ - (${NCFTP} ${NCFTPFLAGS} $${site}$${file} || true); \ + (${NCFTP} ${NCFTPFLAGS} $${site}$${file} ${NCFTPTAIL} || true); \ if [ -f $$file -o -f `/usr/bin/basename $$file` ]; then \ continue 2; \ fi \ @@ -509,7 +509,7 @@ do-fetch: ${ECHO_MSG} ">> $$file doesn't seem to exist on this system."; \ for site in ${PATCH_SITES}; do \ ${ECHO_MSG} ">> Attempting to fetch from $${site}."; \ - (${NCFTP} ${NCFTPFLAGS} $${site}$${file} || true); \ + (${NCFTP} ${NCFTPFLAGS} $${site}$${file} ${NCFTPTAIL} || true); \ if [ -f $$file -o -f `/usr/bin/basename $$file` ]; then \ continue 2; \ fi \ @@ -890,7 +890,7 @@ fetch-list: for file in ${DISTFILES}; do \ if [ ! -f $$file -a ! -f `/usr/bin/basename $$file` ]; then \ for site in ${MASTER_SITES}; do \ - /bin/echo -n ${NCFTP} ${NCFTPFLAGS} $${site}$${file} '||' ; \ + /bin/echo -n ${NCFTP} ${NCFTPFLAGS} $${site}$${file} "${NCFTPTAIL}" '||' ; \ break; \ done; \ /bin/echo "echo $${file} not fetched" ; \ @@ -901,7 +901,7 @@ fetch-list: for file in ${PATCHFILES}; do \ if [ ! -f $$file -a ! -f `/usr/bin/basename $$file` ]; then \ for site in ${PATCH_SITES}; do \ - /bin/echo -n ${NCFTP} ${NCFTPFLAGS} $${site}$${file} ${PATCH_PRFX}$${file} '||' ; \ + /bin/echo -n ${NCFTP} ${NCFTPFLAGS} $${site}$${file} ${PATCH_PRFX}$${file} "${NCFTPTAIL}" '||' ; \ break; \ done; \ /bin/echo "echo $${file} not fetched" ; \ |