diff options
author | midipix <writeonce@midipix.org> | 2016-02-27 09:34:14 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-02-27 16:18:26 -0500 |
commit | 4b41f9c0d09ec59b6790ab2f47720a5d4a4b44c6 (patch) | |
tree | 3b022956be601f8b15254dbcdd50be3d097c023e /configure | |
parent | a529493e1aee8f8efc265c7d4191c567a3ec8056 (diff) | |
download | ntapi-4b41f9c0d09ec59b6790ab2f47720a5d4a4b44c6.tar.bz2 ntapi-4b41f9c0d09ec59b6790ab2f47720a5d4a4b44c6.tar.xz |
build system: added fallback compiler recipe.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -191,6 +191,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 } |