diff options
author | midipix <writeonce@midipix.org> | 2021-05-27 04:18:40 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-27 04:21:29 +0000 |
commit | f76b357e9be0f66a4e4ff04387926ca5539339c6 (patch) | |
tree | f1203532182c29c6032f900554003d1224b46938 /configure | |
parent | e6eab3c2acf8253b5ba722c7b5e7c78ab1dfe697 (diff) | |
download | sbpython2-f76b357e9be0f66a4e4ff04387926ca5539339c6.tar.bz2 sbpython2-f76b357e9be0f66a4e4ff04387926ca5539339c6.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 |