diff options
author | wiz <wiz> | 2000-02-05 07:18:22 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-02-05 07:18:22 +0000 |
commit | 8c780d3a41d1fe9aa853fffc6874a9e4e68abb2c (patch) | |
tree | 5ecb3684b43b929fb98ec55968e912a884fde48e /textproc/unroff | |
parent | 66e9270336dc7e19e45d0f738d8f62d316f95fba (diff) | |
download | pkgsrc-8c780d3a41d1fe9aa853fffc6874a9e4e68abb2c.tar.gz |
find, rm -> ${FIND}, ${RM}
Diffstat (limited to 'textproc/unroff')
-rw-r--r-- | textproc/unroff/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/unroff/Makefile b/textproc/unroff/Makefile index 92ddc540702..1ea4b0ee01d 100644 --- a/textproc/unroff/Makefile +++ b/textproc/unroff/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 1999/12/08 14:14:13 rh Exp $ +# $NetBSD: Makefile,v 1.13 2000/02/05 07:18:22 wiz Exp $ # FreeBSD Id: Makefile,v 1.6 1997/04/27 00:11:48 asami Exp # @@ -34,6 +34,6 @@ pre-patch: ${PATCH} ${PATCH_DIST_ARGS} -p1 < ${PATCH2}) post-patch: - @(cd ${WRKSRC} && find . -name '*.orig' -print | xargs rm -f) + @(cd ${WRKSRC} && ${FIND} . -name '*.orig' -print | xargs ${RM} -f) .include "../../mk/bsd.pkg.mk" |