diff options
author | midipix <writeonce@midipix.org> | 2021-04-17 13:27:38 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-17 13:49:33 +0000 |
commit | d4c555582c1dd102386d322aa08208a62e0ce01d (patch) | |
tree | 01988a775ab3f70283b495e94efc38b20d8ca0d6 | |
parent | 3bad823bee930468f7121b14734ec8d95a6261c0 (diff) | |
download | ntux-d4c555582c1dd102386d322aa08208a62e0ce01d.tar.bz2 ntux-d4c555582c1dd102386d322aa08208a62e0ce01d.tar.xz |
build system: ccenv_output_defs(): support deferred command expansion.
-rw-r--r-- | sofort/ccenv/ccenv.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index 95effcb..5aa1554 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -1271,7 +1271,8 @@ ccenv_output_defs() -e 's/NATIVE_#/#/g' \ -e 's/ =/=/g' \ -e 's/ +=/+=/g' \ - $ccenv_in > "$ccenv_tmp" + $(printf '%s ' $ccenv_in) \ + > "$ccenv_tmp" ccenv_in="$ccenv_tmp" else |