diff options
author | hubertf <hubertf> | 1998-01-24 21:10:16 +0000 |
---|---|---|
committer | hubertf <hubertf> | 1998-01-24 21:10:16 +0000 |
commit | e19ce2086367967a0a7d40572c34e8408aeaba9a (patch) | |
tree | 240720159ff42976eb9e6b63fdef54597db24c76 /misc/kp | |
parent | 0f2c3874af44ddd7c73ed7ffc40849611a28d7d4 (diff) | |
download | pkgsrc-e19ce2086367967a0a7d40572c34e8408aeaba9a.tar.gz |
portlint: fix RCS Id, use command macros
Diffstat (limited to 'misc/kp')
-rw-r--r-- | misc/kp/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/misc/kp/Makefile b/misc/kp/Makefile index 9082f4fed76..1445dbfcf93 100644 --- a/misc/kp/Makefile +++ b/misc/kp/Makefile @@ -3,7 +3,8 @@ # Date created: 8 May 1995 # Whom: asami # -# $Id: Makefile,v 1.2 1997/10/27 00:16:42 hubertf Exp $ +# $NetBSD: Makefile,v 1.3 1998/01/24 21:10:16 hubertf Exp $ +# FreeBSD Id: Makefile,v 1.8 1997/04/20 13:19:32 wosch Exp # DISTNAME= kp-0.96 @@ -17,10 +18,10 @@ RUN_DEPENDS= wish8.0:${PORTSDIR}/x11/tk80 MAN1= kp.1 pre-configure: - find ${WRKDIR} -type f -print|xargs grep -l '/usr/local' > ${WRKDIR}/prefix-list + find ${WRKDIR} -type f -print|xargs ${GREP} -l '/usr/local' > ${WRKDIR}/prefix-list for f in `cat ${WRKDIR}/prefix-list`; do \ - ${SED} -e 's:/usr/local:'${PREFIX}':g' < $$f > $$f.pdone && mv $$f.pdone $$f; \ + ${SED} -e 's:/usr/local:'${PREFIX}':g' < $$f > $$f.pdone && ${MV} $$f.pdone $$f; \ done - rm ${WRKDIR}/prefix-list + ${RM} ${WRKDIR}/prefix-list .include <bsd.port.mk> |