diff options
Diffstat (limited to 'mk')
-rw-r--r-- | mk/cwrappers.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mk/cwrappers.mk b/mk/cwrappers.mk index 6c4e1ee8c4b..e807114f36a 100644 --- a/mk/cwrappers.mk +++ b/mk/cwrappers.mk @@ -1,4 +1,4 @@ -# $NetBSD: cwrappers.mk,v 1.26 2015/05/04 19:23:19 joerg Exp $ +# $NetBSD: cwrappers.mk,v 1.27 2016/10/05 12:46:43 joerg Exp $ # # This Makefile fragment implements integration of pkgtools/cwrappers. @@ -79,6 +79,9 @@ generate-cwrappers: . for cmd in ${CWRAPPERS_APPEND.${wrappee}:U} ${RUN}echo append=${cmd:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}} . endfor +. for cmd in ${CWRAPPERS_PREPEND.${wrappee}:U} + ${RUN}echo prepend=${cmd:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}} +. endfor . for cmd in ${_CWRAPPERS_UNWRAP} ${RUN}echo unwrap=${cmd:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}} . endfor |