pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/mk
Module Name: pkgsrc
Committed By: rillig
Date: Sun Jan 22 23:36:24 UTC 2023
Modified Files:
pkgsrc/mk: cwrappers.mk
Log Message:
cwrappers.mk: remove redundant modifier
In a variable that has exactly one word, there cannot be duplicate
words, so ':u' (only keep unique words) is a no-op.
To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 pkgsrc/mk/cwrappers.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/mk/cwrappers.mk
diff -u pkgsrc/mk/cwrappers.mk:1.38 pkgsrc/mk/cwrappers.mk:1.39
--- pkgsrc/mk/cwrappers.mk:1.38 Wed Nov 23 13:30:38 2022
+++ pkgsrc/mk/cwrappers.mk Sun Jan 22 23:36:24 2023
@@ -1,4 +1,4 @@
-# $NetBSD: cwrappers.mk,v 1.38 2022/11/23 13:30:38 jperkin Exp $
+# $NetBSD: cwrappers.mk,v 1.39 2023/01/22 23:36:24 rillig Exp $
#
# This Makefile fragment implements integration of pkgtools/cwrappers.
@@ -84,10 +84,10 @@ generate-cwrappers:
echo reorder=${cmd:S/^reorder://:Q}; \
@} \
${CWRAPPERS_TRANSFORM.${wrappee}:@cmd@ \
- echo transform=${cmd:u:Q}; \
+ echo transform=${cmd:Q}; \
@} \
${_CWRAPPERS_TRANSFORM:@cmd@ \
- echo transform=${cmd:u:Q}; \
+ echo transform=${cmd:Q}; \
@} \
${CWRAPPERS_APPEND.${wrappee}:U:@cmd@ \
echo append=${cmd:Q}; \
Home |
Main Index |
Thread Index |
Old Index