diff options
author | midipix <writeonce@midipix.org> | 2021-04-24 20:13:30 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-24 20:29:14 +0000 |
commit | e62697a45b2ea725edacd87afd19165d994d7ae2 (patch) | |
tree | f6f0d1db279cae9e0bc31b9c90f48b84329e652d /configure | |
parent | 8c6961ea62417fe50dbbe31e27e5bb3f84d7f677 (diff) | |
download | dalist-e62697a45b2ea725edacd87afd19165d994d7ae2.tar.bz2 dalist-e62697a45b2ea725edacd87afd19165d994d7ae2.tar.xz |
build system: allow projects to specify an alternate Makefile name.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -837,6 +837,11 @@ config_host() config_fini() { + # rename Makefile as needed + if [ -n "$mb_makefile" ]; then + mv $mb_pwd/Makefile $mb_pwd/$mb_makefile + fi + # project-specific post-configuration steps if [ _$mb_use_custom_cfgfini = _yes ]; then . "$mb_project_dir/project/config/cfgfini.sh" |