diff options
author | midipix <writeonce@midipix.org> | 2021-04-17 13:27:38 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-17 13:49:31 +0000 |
commit | 37697081c9725550246878558c3635dd7d8c6698 (patch) | |
tree | 2bb074732932669e81972a359e0ddcefa383ce3a /sofort | |
parent | 1ca63ef22b676aa30bcdbe13861aad58a533a4ee (diff) | |
download | dalist-37697081c9725550246878558c3635dd7d8c6698.tar.bz2 dalist-37697081c9725550246878558c3635dd7d8c6698.tar.xz |
build system: ccenv_output_defs(): support deferred command expansion.
Diffstat (limited to 'sofort')
-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 |