diff options
author | midipix <writeonce@midipix.org> | 2021-04-17 13:27:38 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-17 13:49:35 +0000 |
commit | 12c71e111385191c90345324dca6fb5b72316a5c (patch) | |
tree | 3509c39abc88025de5a2bcb65f5fe242655dd983 | |
parent | 71b26bb0f92bf0f354d18e279b046d9c94301d53 (diff) | |
download | sbpython3-12c71e111385191c90345324dca6fb5b72316a5c.tar.bz2 sbpython3-12c71e111385191c90345324dca6fb5b72316a5c.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 |