summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1994-09-09 00:17:47 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1994-09-09 00:17:47 +0000
commit6762ea311465ce117ee405482b8b10491466ed16 (patch)
tree6c9d883d5d49047c5c0ddf356185db743a8a70aa
parentBring in Michael Reifenberger's tcpblast port. (diff)
As per suggestion by Michael Reifenberger, make ncftp use the -N flag.
Reviewed by: jkh Submitted by: mr
Notes
Notes: svn path=/head/; revision=63
-rw-r--r--Mk/bsd.port.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index 01861916153c..5f159350bc33 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -1,7 +1,7 @@
# bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain.
#
-# $Id: bsd.port.mk,v 1.26 1994/09/02 01:32:13 jkh Exp $
+# $Id: bsd.port.mk,v 1.27 1994/09/02 01:53:33 jkh Exp $
#
# Supported Variables and their behaviors:
@@ -62,6 +62,7 @@
GMAKE?= gmake
NCFTP?= /usr/local/bin/ncftp
+NCFTPFLAGS?= -N
# These need to be absolute since we don't know how deep in the ports
# tree we are and thus can't go relative. They can, of course, be overridden
@@ -289,7 +290,7 @@ ${EXTRACT_COOKIE}:
mkdir -p `dirname ${DISTFILE}`; \
fi; \
if cd `dirname ${DISTFILE}`; then \
- if ${NCFTP} ${HOME_LOCATION}; then \
+ if ${NCFTP} ${NCFTPFLAGS} ${HOME_LOCATION}; then \
${EXTRACT_CMD} ${EXTRACT_ARGS} ${DISTFILE}; \
else \
echo ">> Couldn't fetch it - please retreive ${DISTFILE} manually and try again."; \