diff options
author | midipix <writeonce@midipix.org> | 2021-05-27 04:18:40 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-27 04:21:30 +0000 |
commit | e1793aed8d2200e4bc6b0085d65499ac034bf1f0 (patch) | |
tree | b056d35425fe467f9c274b51a9d4e9c1a7b36c91 /configure | |
parent | c0f5fbcc30410a5766f4181e9c887df2adb82c35 (diff) | |
download | sofort-e1793aed8d2200e4bc6b0085d65499ac034bf1f0.tar.bz2 sofort-e1793aed8d2200e4bc6b0085d65499ac034bf1f0.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 |