diff options
author | midipix <writeonce@midipix.org> | 2021-05-27 04:18:40 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-27 04:18:40 +0000 |
commit | 70a0d150d2d05942d93c6eb6cb66cc8cbfe3797e (patch) | |
tree | 432d2847ab9d05463f753af17f843cb0729ca584 /sofort/cfgtest/cfgtest.sh | |
parent | 57357fd09ccff066bcf666a99c845503f53a172c (diff) | |
download | slibtool-70a0d150d2d05942d93c6eb6cb66cc8cbfe3797e.tar.bz2 slibtool-70a0d150d2d05942d93c6eb6cb66cc8cbfe3797e.tar.xz |
build system: configure: cfgtest: do not rely on default word splitting.
Diffstat (limited to 'sofort/cfgtest/cfgtest.sh')
-rw-r--r-- | sofort/cfgtest/cfgtest.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sofort/cfgtest/cfgtest.sh b/sofort/cfgtest/cfgtest.sh index 71f03ec..2d765be 100644 --- a/sofort/cfgtest/cfgtest.sh +++ b/sofort/cfgtest/cfgtest.sh @@ -244,17 +244,17 @@ cfgtest_common_init() # config.log printf "$cfgtest_fmt" "$mb_cfgtest_cc" >&3 - for cfgtest_cflag in $mb_cfgtest_cflags; do + for cfgtest_cflag in $(printf '%s' "$mb_cfgtest_cflags"); do printf ' \\\n\t%s' "$cfgtest_cflag" >&3 done if [ "$cfgtest_type" = 'lib' ]; then - for cfgtest_lib in $cfgtest_libs; do + for cfgtest_lib in $(printf '%s' "$cfgtest_libs"); do printf ' \\\n\t%s' "$cfgtest_lib" >&3 done elif [ "$cfgtest_type" = 'switch' ]; then - for cfgtest_switch in $cfgtest_switches; do + for cfgtest_switch in $(printf '%s' "$cfgtest_switches"); do printf ' \\\n\t%s' "$cfgtest_switch" >&3 done fi @@ -550,7 +550,7 @@ cfgtest_compiler_switch() cfgtest_switches= cfgtest_spc= - for cfgtest_switch in ${@}; do + for cfgtest_switch in $(printf '%s' "${@}"); do cfgtest_switches="$cfgtest_switches$cfgtest_spc$cfgtest_switch" cfgtest_spc=' ' done |