summaryrefslogtreecommitdiff
path: root/ftp/ftptool
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>1996-12-01 01:23:27 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>1996-12-01 01:23:27 +0000
commit49f337d203a35b330e9816734307eae928c9ad22 (patch)
tree9c7a58bc72f073465ca4da2b58638cc25beb2f62 /ftp/ftptool
parentCleaned up post-install target. (diff)
General Makefile cleanup
Add MAINATERS mkdir -p ==> ${MKDIR} cp ==> ${CP} install ==> ${INSTALL}/${INSTALL_*} etc...
Diffstat (limited to 'ftp/ftptool')
-rw-r--r--ftp/ftptool/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/ftp/ftptool/Makefile b/ftp/ftptool/Makefile
index a89713dd731c..5b8352502bc7 100644
--- a/ftp/ftptool/Makefile
+++ b/ftp/ftptool/Makefile
@@ -3,7 +3,7 @@
# Date created: 19 March 1996
# Whom: janek@gaja.ipan.lublin.pl
#
-# $Id: Makefile,v 1.1.1.1 1996/03/25 08:58:58 asami Exp $
+# $Id: Makefile,v 1.2 1996/11/18 09:54:30 asami Exp $
#
DISTNAME= ftptool-4.6
@@ -22,7 +22,7 @@ WRKSRC= ${WRKDIR}/Ftptool4.6
# Because lex.l is broken, lex.c is taken from old FreeBSD 1.1 port
post-extract:
- cp ${FILESDIR}/lex.c ${WRKSRC}
- rm -f ${WRKSRC}/lex.l
+ @${CP} ${FILESDIR}/lex.c ${WRKSRC}
+ @${RM} -f ${WRKSRC}/lex.l
.include <bsd.port.mk>