Convert from ncftp to fetch. I'm not really happy with this ports

do-fetch: routine, as it doesn't check the return value of fetch (or
ncftp when it was in there), but I'm not about to start hacking this
late in the game.
This commit is contained in:
Gary Palmer 1996-06-26 23:06:49 +00:00
parent 0594bd8f8d
commit dc3698e249
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=3291

View file

@ -3,7 +3,7 @@
# Date created: 7 December 1994
# Whom: asami
#
# $Id: Makefile,v 1.9 1995/04/22 11:58:42 asami Exp $
# $Id: Makefile,v 1.10 1996/03/07 01:57:29 asami Exp $
#
DISTNAME= xfed
@ -33,7 +33,7 @@ do-fetch:
echo ">> Fetching files from remote site..."; \
for file in ${SOURCEFILES}; do \
(cd ${.CURDIR}/src/xfed; \
${NCFTP} ${NCFTPFLAGS} ${SOURCESITE}\{$$file\}); \
${FETCH_CMD} ${FETCH_BEFORE_ARGS} ${SOURCESITE}\{$$file\} ${FETCH_AFTER_ARGS}); \
done; \
echo ">> Now creating a tarball ${DISTDIR}/${TARFILE}..."; \
tar -C ${.CURDIR}/src -cf - xfed | \