diff options
author | midipix <writeonce@midipix.org> | 2018-12-21 02:54:06 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-21 22:48:25 -0500 |
commit | 88d72bd0429ceb0da2940987bc650ed34879da69 (patch) | |
tree | 45b962669b4e243c787c828974831dc63bfc1d08 /configure | |
parent | dd7c0a8fd21e86da319f4d4990a3640aab0f1d38 (diff) | |
download | ntux-88d72bd0429ceb0da2940987bc650ed34879da69.tar.bz2 ntux-88d72bd0429ceb0da2940987bc650ed34879da69.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 |