pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/graphics/xart Fix directory permissions manually rathe...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/bfc1f6df8744
branches:  trunk
changeset: 639770:bfc1f6df8744
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Thu Sep 25 10:34:45 2014 +0000

description:
Fix directory permissions manually rather than relying on find(1)
which may not be able to traverse if building as non-root.

diffstat:

 graphics/xart/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 7c7709906930 -r bfc1f6df8744 graphics/xart/Makefile
--- a/graphics/xart/Makefile    Thu Sep 25 10:21:57 2014 +0000
+++ b/graphics/xart/Makefile    Thu Sep 25 10:34:45 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.60 2013/02/16 11:22:34 wiz Exp $
+# $NetBSD: Makefile,v 1.61 2014/09/25 10:34:45 jperkin Exp $
 #
 
 DISTNAME=      xart19980415
@@ -19,7 +19,7 @@
 USE_IMAKE=     YES
 
 post-extract:
-       ${FIND} ${WRKSRC} -type d -exec ${CHMOD} 755 {} \;
+       ${CHMOD} 755 ${WRKSRC} ${WRKSRC}/{Doc,bitmaps,rw}
        ${FIND} ${WRKSRC} -type f -exec ${CHMOD} 644 {} \;
 
 .include "../../mk/jpeg.buildlink3.mk"



Home | Main Index | Thread Index | Old Index