diff options
author | midipix <writeonce@midipix.org> | 2021-05-27 04:18:40 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-27 04:21:30 +0000 |
commit | e7f8595b15f9826ee047cc2cb681af482675487d (patch) | |
tree | 5a954393eb2971ca1fe18f056d3621c6841926c2 /configure | |
parent | 950fe1f16ed11cf9afe5a0af568f91a1c84ee5d1 (diff) | |
download | tpax-e7f8595b15f9826ee047cc2cb681af482675487d.tar.bz2 tpax-e7f8595b15f9826ee047cc2cb681af482675487d.tar.xz |
build system: configure: cfgtest: do not rely on default word splitting.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -874,7 +874,7 @@ config_host() printf '\n%s' "$mb_cfghost_cc $ccenv_tmpname -o a.out" >&3 - for mb_cfghost_cflag in $mb_cfghost_cflags; do + for mb_cfghost_cflag in $(printf '%s' "$mb_cfghost_cflags"); do printf ' \\\n\t%s' "$mb_cfghost_cflag" >&3 done |