diff options
author | midipix <writeonce@midipix.org> | 2018-12-21 02:54:06 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-21 22:48:16 -0500 |
commit | c1a551aa03b65b045cecc208274ae45f63b63810 (patch) | |
tree | 12a3f43d914ee4ee7884cf3b3bd9a922febf6884 /configure | |
parent | a9542cd1210b06d4bf6667ba897dcd2edbbd9000 (diff) | |
download | bcparser-c1a551aa03b65b045cecc208274ae45f63b63810.tar.bz2 bcparser-c1a551aa03b65b045cecc208274ae45f63b63810.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 |