summaryrefslogtreecommitdiff
path: root/Mk
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1996-02-06 21:25:23 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1996-02-06 21:25:23 +0000
commitb6f3edc28c854775a1a852aaac8fffec2659c31a (patch)
tree09b86dfe75fd4cede3f5bd0b80519f0911c8f065 /Mk
parentUpgrade to snapshot of ssh. 1.1.12a was recalled due to even worse (diff)
Add NCFTP tailer arguments: ${NCFTPTAIL} variable
Since it is empty in normal case, it not affect anything It is useful for ncftp -c ugly_name > nice_name ^^^^^^^^^^^ ${NCFTPTAIL}
Notes
Notes: svn path=/head/; revision=2679
Diffstat (limited to 'Mk')
-rw-r--r--Mk/bsd.port.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index ede3b84c3e6c..f296e94e6db3 100644
--- a/Mk/bsd.port.mk
+++ b/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" ; \