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 | ac5f07147ca3f1ab8859cf9daa96c5ff6c4c52a7 (patch) | |
tree | 54852e487f97049628a90392d1a1600607af4590 /configure | |
parent | 5e705da43eb2d3a358d93c20bc3b85022e640418 (diff) | |
download | sltdl-ac5f07147ca3f1ab8859cf9daa96c5ff6c4c52a7.tar.bz2 sltdl-ac5f07147ca3f1ab8859cf9daa96c5ff6c4c52a7.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 |