diff options
author | midipix <writeonce@midipix.org> | 2018-12-31 12:49:09 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-31 21:37:16 -0500 |
commit | 18aad45ee53c82c42350f1344ffefd297a1e883a (patch) | |
tree | f982ccfed542aca4086e70da342c489557d5a812 | |
parent | ce8e9e9e4793c55581b08960048e14075fa8e927 (diff) | |
download | perk-18aad45ee53c82c42350f1344ffefd297a1e883a.tar.bz2 perk-18aad45ee53c82c42350f1344ffefd297a1e883a.tar.xz |
build system: configure: support a simple, project-specific cfgdefs.in.
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -97,6 +97,10 @@ init_vars() 'a custom config step.' \ > cfgdefs.mk cat $mb_project_dir/sofort/cfgdefs.in >> cfgdefs.mk + + if [ -f $mb_project_dir/project/cfgdefs.in ]; then + cat $mb_project_dir/project/cfgdefs.in >> cfgdefs.mk + fi fi # user build-time overrides |