diff options
author | tv <tv@pkgsrc.org> | 2006-11-10 16:18:48 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2006-11-10 16:18:48 +0000 |
commit | 21e14c6c7f15a109f15c6528ff8bfb341587eeca (patch) | |
tree | 1ac2c927abad98b7cdb20e25c2850b388812a39d /graphics/xart | |
parent | f0726f5ba1339123a9a5dcf989e9398057f6c5bd (diff) | |
download | pkgsrc-21e14c6c7f15a109f15c6528ff8bfb341587eeca.tar.gz |
Use xargs in both cases.
Diffstat (limited to 'graphics/xart')
-rw-r--r-- | graphics/xart/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/xart/Makefile b/graphics/xart/Makefile index 89aac710a3e..056daad658f 100644 --- a/graphics/xart/Makefile +++ b/graphics/xart/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2006/08/09 17:13:58 darcy Exp $ +# $NetBSD: Makefile,v 1.42 2006/11/10 16:18:48 tv Exp $ # DISTNAME= xart19980415 @@ -16,7 +16,7 @@ WRKSRC= ${WRKDIR}/19980415 USE_IMAKE= YES post-extract: - ${FIND} ${WRKSRC} -type d -exec ${CHMOD} 755 {} \; + ${FIND} ${WRKSRC} -type d -print | ${XARGS} ${CHMOD} 755 ${FIND} ${WRKSRC} -type f -print | ${XARGS} ${CHMOD} 644 .include "../../graphics/jpeg/buildlink3.mk" |