diff options
author | midipix <writeonce@midipix.org> | 2020-01-10 11:10:50 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-01-10 16:02:53 +0000 |
commit | 013c47fff5daf1ab6df07ec100e8deb287d23c44 (patch) | |
tree | 0eccab5f9e84532685c231913cad6848dc250ddd /configure | |
parent | d0f155c0b94e089cf2a4d0a090d979faac1d5be1 (diff) | |
download | mdso-013c47fff5daf1ab6df07ec100e8deb287d23c44.tar.bz2 mdso-013c47fff5daf1ab6df07ec100e8deb287d23c44.tar.xz |
build system: ./configure: properly handle passing of args to dot scripts.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -529,6 +529,11 @@ config_ccenv() config_copy } +config_custom_cfgdefs() +{ + . $mb_project_dir/project/config/cfgdefs.sh +} + config_custom() { if [ _$mb_use_custom_cfgdefs = _yes ]; then @@ -536,8 +541,7 @@ config_custom() output_script_status ${mb_script} \ 'invoking project-specific cfgdefs.sh' - eval . $mb_project_dir/project/config/cfgdefs.sh \ - "$mb_custom_cfgdefs_args" + eval config_custom_cfgdefs "$mb_custom_cfgdefs_args" output_section_break config_copy |