diff options
author | midipix <writeonce@midipix.org> | 2021-05-27 04:18:40 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-27 04:21:27 +0000 |
commit | b76244a243c4676a71949c7a7da0d46e1b6d8cfb (patch) | |
tree | 844394fbc721c1eddb3ffb122e232f90efd5299d /configure | |
parent | a1d6e73d2085f2a7286a9a2993693b186171eb2c (diff) | |
download | apimagic-b76244a243c4676a71949c7a7da0d46e1b6d8cfb.tar.bz2 apimagic-b76244a243c4676a71949c7a7da0d46e1b6d8cfb.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 |