summaryrefslogtreecommitdiff
path: root/x11/xpmicons
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2007-02-15 14:54:39 +0000
committerrillig <rillig@pkgsrc.org>2007-02-15 14:54:39 +0000
commitad7ae409410419268afa07b25d9c16a57814f8ad (patch)
treee4fbf07d1b913712758cfcd09f9d876157aecf30 /x11/xpmicons
parentdd861654ac4f2199580702bbdba8ac23d930156f (diff)
downloadpkgsrc-ad7ae409410419268afa07b25d9c16a57814f8ad.tar.gz
Added error checking.
Diffstat (limited to 'x11/xpmicons')
-rw-r--r--x11/xpmicons/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/x11/xpmicons/Makefile b/x11/xpmicons/Makefile
index 956e80fec7b..f2a63cd4d49 100644
--- a/x11/xpmicons/Makefile
+++ b/x11/xpmicons/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.18 2007/02/02 00:18:36 wiz Exp $
+# $NetBSD: Makefile,v 1.19 2007/02/15 14:54:39 rillig Exp $
DISTNAME= xpmicons-1.0
PKGREVISION= 4
@@ -34,9 +34,9 @@ post-extract:
find ${WRKSRC} -type d -name .xvpics -print | ${XARGS} rm -rf
do-install:
- find ${WRKSRC} -name \*.xpm -print | \
+ set -e; cd ${WRKSRC}; find * -name \*.xpm -print | \
while read f; do ${INSTALL_DATA} $$f ${PREFIX}/include/X11/pixmaps; done
- find ${WRKSRC} -name \*.xbm -print | \
+ set -e; cd ${WRKSRC}; find * -name \*.xbm -print | \
while read f; do ${INSTALL_DATA} $$f ${PREFIX}/include/X11/bitmaps; done
.include "../../mk/bsd.pkg.mk"