diff options
author | gpalmer <gpalmer@FreeBSD.org> | 1996-06-26 23:06:49 +0000 |
---|---|---|
committer | gpalmer <gpalmer@FreeBSD.org> | 1996-06-26 23:06:49 +0000 |
commit | 5d0dd719b40f91d17248dd341f355562eedb8af6 (patch) | |
tree | 79d4c944ccc558d9dbfcdf12f3cc7854dc17a4da /x11-fonts/xfed | |
parent | c4fb8f863d78d7c5753373cd38d4826ebb49ac9b (diff) | |
download | FreeBSD-ports-5d0dd719b40f91d17248dd341f355562eedb8af6.zip FreeBSD-ports-5d0dd719b40f91d17248dd341f355562eedb8af6.tar.gz |
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.
Diffstat (limited to 'x11-fonts/xfed')
-rw-r--r-- | x11-fonts/xfed/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-fonts/xfed/Makefile b/x11-fonts/xfed/Makefile index 87a7a9d..ce1c794 100644 --- a/x11-fonts/xfed/Makefile +++ b/x11-fonts/xfed/Makefile @@ -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 | \ |