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 | e122aca27fb8fd309178199500ae97c2b271ed58 (patch) | |
tree | 45d042f7bbd906f2e3c987268f537b4ad5bd835b /configure | |
parent | 53ca2cfc3107ae8c885c2125a03d843483c3a0af (diff) | |
download | perk-e122aca27fb8fd309178199500ae97c2b271ed58.tar.bz2 perk-e122aca27fb8fd309178199500ae97c2b271ed58.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 |