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 | 5e8a6cf51c752c394444a77681fe3a4ccd81a29f (patch) | |
tree | 3191cc45401cf180ee8f9e3f0ffb82b463611ffb /sofort | |
parent | 760910620e58a1fddcbb04d8ee7c788a24f66722 (diff) | |
download | w32lib-5e8a6cf51c752c394444a77681fe3a4ccd81a29f.tar.bz2 w32lib-5e8a6cf51c752c394444a77681fe3a4ccd81a29f.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 |