diff options
author | midipix <writeonce@midipix.org> | 2016-02-27 09:34:14 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-02-27 10:58:06 -0500 |
commit | cf557143a79d9f2f5169c8565278e838d4552fc1 (patch) | |
tree | 5067dfa4c870ae9d6bad4575b376a2e89c6d4166 /configure | |
parent | 4aae4b3a307ec96be4b8a49d0c64efecdae36ed5 (diff) | |
download | sofort-cf557143a79d9f2f5169c8565278e838d4552fc1.tar.bz2 sofort-cf557143a79d9f2f5169c8565278e838d4552fc1.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 } |