diff options
author | midipix <writeonce@midipix.org> | 2021-05-27 04:18:40 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-27 04:21:28 +0000 |
commit | 277afb86f4d245b2a69e0736227df2c4f27b52a0 (patch) | |
tree | d6f49efcc31c14eb94e1f43bc370245e4a1bf5a1 /configure | |
parent | 1d428ede59c202611ed6cf0c6f1a9b2c7da79858 (diff) | |
download | ntapi-277afb86f4d245b2a69e0736227df2c4f27b52a0.tar.bz2 ntapi-277afb86f4d245b2a69e0736227df2c4f27b52a0.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 |