From 8315b1014c285dc76260a9d23878cc9d1e2d5581 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Fri, 9 Sep 1994 00:17:47 +0000 Subject: [PATCH] As per suggestion by Michael Reifenberger, make ncftp use the -N flag. Reviewed by: jkh Submitted by: mr --- share/mk/bsd.port.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index 01861916153c..5f159350bc33 100644 --- a/share/mk/bsd.port.mk +++ b/share/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."; \