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 | e4539c0f3d2bc16493ed29d237b3e106d567ba72 (patch) | |
tree | cb3887723f35f3478aa10f65b92ef596705753f1 /configure | |
parent | 2acaac06f327f50c9714d5db89d8aa115826c24e (diff) | |
download | pemagine-e4539c0f3d2bc16493ed29d237b3e106d567ba72.tar.bz2 pemagine-e4539c0f3d2bc16493ed29d237b3e106d567ba72.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 |