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 | 40ecd6e66d773d3b2c96fbe0437a4066999211b7 (patch) | |
tree | cf09ba7b7b9c11b74ce70e52e0876bdf534c95ac | |
parent | 7875bbdf2e1cea008a9b68b56ac7f75eb72ce0ff (diff) | |
download | sbpython2-40ecd6e66d773d3b2c96fbe0437a4066999211b7.tar.bz2 sbpython2-40ecd6e66d773d3b2c96fbe0437a4066999211b7.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 |