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 | d360e0788880d7590299fbc9adcca9ac2f088541 (patch) | |
tree | aa112d66e199155f9950872cdfa8e1152e8c3799 /configure | |
parent | c294c6133a279a3ce7fa1312e366e1fb7e656d16 (diff) | |
download | mdso-d360e0788880d7590299fbc9adcca9ac2f088541.tar.bz2 mdso-d360e0788880d7590299fbc9adcca9ac2f088541.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 |