diff options
author | joerg <joerg@pkgsrc.org> | 2016-10-05 12:46:43 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2016-10-05 12:46:43 +0000 |
commit | 8713c51f5cafed2defaed4d69c662347ab193953 (patch) | |
tree | d7437d39a3267d5d52b87234eba017b3198f8a13 /mk | |
parent | 351578df0747966a92dd6533836530d911454c6c (diff) | |
download | pkgsrc-8713c51f5cafed2defaed4d69c662347ab193953.tar.gz |
Hook up the prepend support.
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 |