diff options
author | midipix <writeonce@midipix.org> | 2021-04-24 14:17:30 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-24 14:18:26 +0000 |
commit | 8f20af2f2fe936dfc8b8efddbb8d2c396131fbc7 (patch) | |
tree | 6de9bd64ff0e965feac4081a87d7a6fa12ecb7f8 /configure | |
parent | 1d1981c36887044cb3864e0da62abee0c9afab18 (diff) | |
download | bautomake-8f20af2f2fe936dfc8b8efddbb8d2c396131fbc7.tar.bz2 bautomake-8f20af2f2fe936dfc8b8efddbb8d2c396131fbc7.tar.xz |
build system: configure: respect project-specific make{mode} preferences.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -169,6 +169,15 @@ init_vars() . "$mb_config" + # config.project make preferences + if [ -z "${MAKE}" ]; then + MAKE="$mb_make" + fi + + if [ -z "${MAKEMODE}" ]; then + MAKEMODE="$mb_makemode" + fi + # package if [ -z "$mb_package" ]; then error_msg "$mb_script: incomplete information in $mb_config." |