pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc Don't use non-POSIX brace expansion.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e7c2a3801eac
branches:  trunk
changeset: 639881:e7c2a3801eac
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Mon Sep 29 12:27:16 2014 +0000

description:
Don't use non-POSIX brace expansion.

diffstat:

 databases/luma/Makefile |  5 +++--
 graphics/xart/Makefile  |  7 ++++---
 2 files changed, 7 insertions(+), 5 deletions(-)

diffs (40 lines):

diff -r 94779e9d522e -r e7c2a3801eac databases/luma/Makefile
--- a/databases/luma/Makefile   Mon Sep 29 12:08:24 2014 +0000
+++ b/databases/luma/Makefile   Mon Sep 29 12:27:16 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.37 2014/09/27 09:46:24 jperkin Exp $
+# $NetBSD: Makefile,v 1.38 2014/09/29 12:27:16 jperkin Exp $
 
 DISTNAME=      luma-3.0.7
 CATEGORIES=    databases
@@ -29,7 +29,8 @@
 
 # world-writeable files
 pre-build:
-       ${CHMOD} 0644 ${WRKSRC}/data/icons/*/*.{png,svg}
+       ${CHMOD} 0644 ${WRKSRC}/data/icons/*/*.png
+       ${CHMOD} 0644 ${WRKSRC}/data/icons/*/*.svg
        ${CHMOD} 0644 ${WRKSRC}/data/*.desktop
 
 # some templates are not installed, do it manually
diff -r 94779e9d522e -r e7c2a3801eac graphics/xart/Makefile
--- a/graphics/xart/Makefile    Mon Sep 29 12:08:24 2014 +0000
+++ b/graphics/xart/Makefile    Mon Sep 29 12:27:16 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.62 2014/09/27 10:05:42 jperkin Exp $
+# $NetBSD: Makefile,v 1.63 2014/09/29 12:30:48 jperkin Exp $
 #
 
 DISTNAME=      xart19980415
@@ -19,8 +19,9 @@
 USE_IMAKE=     YES
 
 post-extract:
-       for d in ${WRKSRC} ${WRKSRC}/{Doc,bitmaps,rw}; do       \
-               ${CHMOD} 755 $${d};                             \
+       ${CHMOD} 755 ${WRKSRC}
+       for d in Doc bitmaps rw; do                     \
+               ${CHMOD} 755 ${WRKSRC}/$${d};           \
        done
        ${FIND} ${WRKSRC} -type f -exec ${CHMOD} 644 {} \;
 



Home | Main Index | Thread Index | Old Index