As per suggestion by Michael Reifenberger, make ncftp use the -N flag.

Reviewed by:	jkh
Submitted by:	mr
This commit is contained in:
Jordan K. Hubbard 1994-09-09 00:17:47 +00:00
parent 2a34794e13
commit 8315b1014c
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# bsd.port.mk - 940820 Jordan K. Hubbard. # bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain. # 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: # Supported Variables and their behaviors:
@ -62,6 +62,7 @@
GMAKE?= gmake GMAKE?= gmake
NCFTP?= /usr/local/bin/ncftp NCFTP?= /usr/local/bin/ncftp
NCFTPFLAGS?= -N
# These need to be absolute since we don't know how deep in the ports # 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 # 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}`; \ mkdir -p `dirname ${DISTFILE}`; \
fi; \ fi; \
if cd `dirname ${DISTFILE}`; then \ if cd `dirname ${DISTFILE}`; then \
if ${NCFTP} ${HOME_LOCATION}; then \ if ${NCFTP} ${NCFTPFLAGS} ${HOME_LOCATION}; then \
${EXTRACT_CMD} ${EXTRACT_ARGS} ${DISTFILE}; \ ${EXTRACT_CMD} ${EXTRACT_ARGS} ${DISTFILE}; \
else \ else \
echo ">> Couldn't fetch it - please retreive ${DISTFILE} manually and try again."; \ echo ">> Couldn't fetch it - please retreive ${DISTFILE} manually and try again."; \