diff options
author | joerg <joerg@pkgsrc.org> | 2014-11-27 20:31:56 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2014-11-27 20:31:56 +0000 |
commit | 8fc9d15d96a4f34f69fec623400ab41463e7bc19 (patch) | |
tree | 5c2eb90bf7c6d7ff87ebff127bcc03ecfd0de9d5 /mk | |
parent | 165111b65e036f59a0138b7ca7081ea3a2089a6c (diff) | |
download | pkgsrc-8fc9d15d96a4f34f69fec623400ab41463e7bc19.tar.gz |
Fix variable expansion.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/cwrappers.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/cwrappers.mk b/mk/cwrappers.mk index c8b74ed506a..022c2b000c8 100644 --- a/mk/cwrappers.mk +++ b/mk/cwrappers.mk @@ -1,4 +1,4 @@ -# $NetBSD: cwrappers.mk,v 1.5 2014/11/25 18:25:58 joerg Exp $ +# $NetBSD: cwrappers.mk,v 1.6 2014/11/27 20:31:56 joerg Exp $ # # This Makefile fragment implements integration of pkgtools/cwrappers. @@ -52,7 +52,7 @@ generate-cwrappers: ${RUN}echo wrksrc=${WRKSRC:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}} ${RUN}case ${wrappee} in *libtool) ;; *) echo path=${_PATH_ORIG:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}};; esac ${RUN}echo exec=${CWRAPPERS_WRAPPEE.${wrappee}:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}} -. for cmd in ${WRAPPER_REORDER_CMDS +. for cmd in ${WRAPPER_REORDER_CMDS} ${RUN}echo reorder=${cmd:S/^reorder://:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}} . endfor . for cmd in ${_CWRAPPERS_TRANSFORM} |