diff options
author | wiz <wiz@pkgsrc.org> | 2000-01-02 03:36:52 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2000-01-02 03:36:52 +0000 |
commit | 900f5e50fff492faca5c1ba48fa4dabef913c0bf (patch) | |
tree | 799576ceb1c6d2fa71411900dbe4a4a0551b1093 /graphics/xart/Makefile | |
parent | d0d024052c11bdb7b240dc6afca35983931b979e (diff) | |
download | pkgsrc-900f5e50fff492faca5c1ba48fa4dabef913c0bf.tar.gz |
replaced some commands by their ${COMMAND} counterparts
Diffstat (limited to 'graphics/xart/Makefile')
-rw-r--r-- | graphics/xart/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/xart/Makefile b/graphics/xart/Makefile index 2216b4ce689..26aa6d536e2 100644 --- a/graphics/xart/Makefile +++ b/graphics/xart/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 1999/10/08 21:12:50 jlam Exp $ +# $NetBSD: Makefile,v 1.11 2000/01/02 03:36:53 wiz Exp $ # DISTNAME= xart19980415 @@ -19,7 +19,7 @@ WRKSRC= ${WRKDIR}/19980415 USE_IMAKE= yes post-extract: - find ${WRKSRC} -type d -print | xargs chmod 755 - find ${WRKSRC} -type f -print | xargs chmod 644 + ${FIND} ${WRKSRC} -type d -print | xargs ${CHMOD} 755 + ${FIND} ${WRKSRC} -type f -print | xargs ${CHMOD} 644 .include "../../mk/bsd.pkg.mk" |