diff options
author | midipix <writeonce@midipix.org> | 2019-10-18 00:44:15 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-18 00:44:15 +0000 |
commit | 05e19ebebad07b52ecf7bc2972759d4ba1fe0036 (patch) | |
tree | a5a4a4a91247752125341b6eb3e9701ab00ad832 /configure | |
parent | 1e150dc30e9e1185e82d38f1e7ef90d2c0568c6c (diff) | |
download | sofort-05e19ebebad07b52ecf7bc2972759d4ba1fe0036.tar.bz2 sofort-05e19ebebad07b52ecf7bc2972759d4ba1fe0036.tar.xz |
build system: configure: accommodate shells that lack (default) word splitting.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -71,7 +71,7 @@ init_vars() mb_vars="$mb_make_vars $mb_impl_vars $mb_proj_vars $mb_flag_vars" - for mb_var in $mb_vars ; do + for mb_var in $(printf "$mb_vars") ; do mb_expr=$mb_var='${'$mb_var':-}' eval "$mb_expr" done @@ -390,7 +390,7 @@ config_copy() | grep -v '^#') mb_sed_substs=" \ - $(for __var in $mb_vars; do \ + $(for __var in $(printf %s "$mb_vars"); do \ printf '%s"$%s"%s' "-e 's^@$__var@^'" \ "mb_$__var" "'^g' "; \ done)" |