diff options
author | midipix <writeonce@midipix.org> | 2021-05-27 04:18:40 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-27 04:21:28 +0000 |
commit | f168f68946c818dfcf601a00a815a586694db487 (patch) | |
tree | 8dd1cc2c2287e8facb791cd3b0a1ad922ddca923 /configure | |
parent | f7e25403a6cb5e3f168025feef77af2070388f5e (diff) | |
download | bfirm-f168f68946c818dfcf601a00a815a586694db487.tar.bz2 bfirm-f168f68946c818dfcf601a00a815a586694db487.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 |