diff options
author | wiz <wiz@pkgsrc.org> | 2000-03-16 13:44:53 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2000-03-16 13:44:53 +0000 |
commit | 127ae36e14a674bb2d8bdeb7d501801da323daf0 (patch) | |
tree | 6c0f5b977105f490b459450e82c5a445c23cac7f /mail | |
parent | 29d07fc9a20948ab2560c0709557bc7fc44be05d (diff) | |
download | pkgsrc-127ae36e14a674bb2d8bdeb7d501801da323daf0.tar.gz |
grep, cp -> ${GREP}, ${CP}
Diffstat (limited to 'mail')
-rw-r--r-- | mail/nmh/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/nmh/Makefile b/mail/nmh/Makefile index ca7a2ce9246..e7c1213f79a 100644 --- a/mail/nmh/Makefile +++ b/mail/nmh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2000/03/02 05:23:54 kim Exp $ +# $NetBSD: Makefile,v 1.36 2000/03/16 13:44:53 wiz Exp $ # FreeBSD Id: Makefile,v 1.2 1997/08/04 06:51:28 markm Exp # @@ -72,17 +72,17 @@ post-configure: post-install: @${INSTALL_DATA_DIR} ${PREFIX}/${DOCDIR} - @for f in `grep '^${DOCDIR}/' ${PKGDIR}/PLIST`; do \ + @for f in `${GREP} '^${DOCDIR}/' ${PKGDIR}/PLIST`; do \ ${INSTALL_DATA} ${WRKSRC}/`basename $$f` ${PREFIX}/${DOCDIR}; \ done @${INSTALL_DATA} ${FILESDIR}/mhn.defaults.dist ${PREFIX}/etc/nmh @if [ ! -f ${PREFIX}/etc/nmh/mhn.defaults ]; then \ - cp -p \ + ${CP} -p \ ${PREFIX}/etc/nmh/mhn.defaults.dist \ ${PREFIX}/etc/nmh/mhn.defaults; \ fi @if [ ! -f ${PREFIX}/etc/nmh/mts.conf ]; then \ - cp -p \ + ${CP} -p \ ${PREFIX}/etc/nmh/mts.conf.dist \ ${PREFIX}/etc/nmh/mts.conf; \ fi |