diff options
author | midipix <writeonce@midipix.org> | 2016-02-27 09:34:14 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-11 00:22:35 -0500 |
commit | 4d5e525660b41b816076fe819bda82e3c1b3edef (patch) | |
tree | 1c834ecf99b70e4d847a91329bcbbecc75adf90c /configure | |
parent | af3780fcecb8abe78a5002b4bfa3aaff72d1a19c (diff) | |
download | mdso-4d5e525660b41b816076fe819bda82e3c1b3edef.tar.bz2 mdso-4d5e525660b41b816076fe819bda82e3c1b3edef.tar.xz |
build system: added fallback compiler recipe.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -195,6 +195,13 @@ common_defaults() mb_host='any-host'; fi fi + + # fallback compiler recipe + if [ -n "$mb_compiler" ]; then + if ! [ -f $mb_project_dir/sysinfo/compiler/$mb_compiler.mk ]; then + mb_compiler='any-compiler' + fi + fi } |