diff options
author | midipix <writeonce@midipix.org> | 2018-12-21 02:54:06 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-21 22:48:33 -0500 |
commit | a01d03a8df1a5c1ae5705c4d2928afd83166e588 (patch) | |
tree | 812594f220c4f50825b8b8737c70d6fc0a0729ec /configure | |
parent | ed2ed62379bcb70f920ad62e98fb527f9363db8c (diff) | |
download | w32lib-a01d03a8df1a5c1ae5705c4d2928afd83166e588.tar.bz2 w32lib-a01d03a8df1a5c1ae5705c4d2928afd83166e588.tar.xz |
build system: configure: explicitly initialize all variables.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -51,6 +51,13 @@ init_vars() mb_custom_cfgdefs_args='' mb_custom_cfgdefs_space='' + mb_vars=$(cat $mb_project_dir/sofort/config.vars | grep -v '^#') + + for mb_var in $mb_vars; do + mb_expr=$mb_var='${'$mb_var':-}' + eval "$mb_expr" + done + if [ -z "$mb_config" ]; then . $mb_project_dir/config.project || exit 2 else |