diff options
author | midipix <writeonce@midipix.org> | 2020-01-10 11:10:50 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-01-10 16:02:55 +0000 |
commit | 7ed30fb67ec7c3ded01b2fa9452cae2c5817a679 (patch) | |
tree | bbdc7ef97c0c7fa3d7719271287960e12dfe8674 | |
parent | d6944192cc21e786cf7f43bfa5beaeffee7397f0 (diff) | |
download | slibtool-7ed30fb67ec7c3ded01b2fa9452cae2c5817a679.tar.bz2 slibtool-7ed30fb67ec7c3ded01b2fa9452cae2c5817a679.tar.xz |
build system: ./configure: properly handle passing of args to dot scripts.
-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 |