diff options
author | midipix <writeonce@midipix.org> | 2021-04-17 13:27:38 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-17 13:49:32 +0000 |
commit | 0f92f3d1ee348ad203cdaaec88d75db4ce306819 (patch) | |
tree | 757cdb1ca38d7917501cafdb94c107b3315a0c58 | |
parent | b17dc762f6c44d0b5ac07ba0b6740a10262bfb0a (diff) | |
download | mdso-0f92f3d1ee348ad203cdaaec88d75db4ce306819.tar.bz2 mdso-0f92f3d1ee348ad203cdaaec88d75db4ce306819.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 |