diff options
author | midipix <writeonce@midipix.org> | 2021-04-17 13:27:38 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-17 13:49:37 +0000 |
commit | 0586b1bb0f8ad211d03ef8ab895d1bc2e19d0f80 (patch) | |
tree | 7d0225b5dac35a52299e0687b7769a5dbf15e83b | |
parent | b8b6e8076321d61845308f87d0b5855c1329239d (diff) | |
download | u16ports-0586b1bb0f8ad211d03ef8ab895d1bc2e19d0f80.tar.bz2 u16ports-0586b1bb0f8ad211d03ef8ab895d1bc2e19d0f80.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 |