As an optimization (in simple, well used cases) only call cat ${.ALLSRC} when

generating files from various sources instead of calling cat ${.ALLSRC} | sed

The perl case was skipped because it's not being used in the tree at this time
This commit is contained in:
Enji Cooper
2014-11-04 01:57:31 +00:00
parent ae45750d6c
commit db572ab644
3 changed files with 12 additions and 0 deletions
+4
View File
@@ -86,7 +86,11 @@ CLEANFILES+= ${_T} ${_T}.tmp
TAP_TESTS_SH_SED_${_T}?= # empty
TAP_TESTS_SH_SRC_${_T}?= ${_T}.sh
${_T}: ${TAP_TESTS_SH_SRC_${_T}}
.if empty(TAP_TESTS_SH_SED_${_T})
cat ${.ALLSRC} >${.TARGET}.tmp
.else
cat ${.ALLSRC} | sed ${TAP_TESTS_SH_SED_${_T}} >${.TARGET}.tmp
.endif
chmod +x ${.TARGET}.tmp
mv ${.TARGET}.tmp ${.TARGET}
.endfor