diff options
author | midipix <writeonce@midipix.org> | 2018-12-21 02:54:06 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-21 22:48:23 -0500 |
commit | 2490eaad6907c624ab5f41924ec1782c739bad8a (patch) | |
tree | 4bde3b8c59e842a5e38a865ad14fb62dbfbebe92 /configure | |
parent | e60976245cd75872b81c78204ec09a1615872b10 (diff) | |
download | ntcon-2490eaad6907c624ab5f41924ec1782c739bad8a.tar.bz2 ntcon-2490eaad6907c624ab5f41924ec1782c739bad8a.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 |