diff options
author | midipix <writeonce@midipix.org> | 2021-05-27 04:18:40 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-27 04:18:40 +0000 |
commit | 70a0d150d2d05942d93c6eb6cb66cc8cbfe3797e (patch) | |
tree | 432d2847ab9d05463f753af17f843cb0729ca584 /configure | |
parent | 57357fd09ccff066bcf666a99c845503f53a172c (diff) | |
download | slibtool-70a0d150d2d05942d93c6eb6cb66cc8cbfe3797e.tar.bz2 slibtool-70a0d150d2d05942d93c6eb6cb66cc8cbfe3797e.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 |