diff options
author | midipix <writeonce@midipix.org> | 2016-02-27 09:34:14 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-02-27 14:42:48 -0500 |
commit | e28ab79e934209548f2a117cc855f2d41d0f3e32 (patch) | |
tree | 6db93575405f0ac34bf034dd133da5355c97bfff /configure | |
parent | 46dd0cc78629f55c9e06b929f1b6f9ea4dcedabe (diff) | |
download | apimagic-e28ab79e934209548f2a117cc855f2d41d0f3e32.tar.bz2 apimagic-e28ab79e934209548f2a117cc855f2d41d0f3e32.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 } |