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 | f4514bc22edde2e68e6c4b43bea1afcfe3b32c92 (patch) | |
tree | 87739ccc084345f030d91d6b1af2240cc5e8ad45 /configure | |
parent | e0812770dec954fd9a56d5994152e11abbdbf81c (diff) | |
download | ptycon-f4514bc22edde2e68e6c4b43bea1afcfe3b32c92.tar.bz2 ptycon-f4514bc22edde2e68e6c4b43bea1afcfe3b32c92.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 |