summaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-02-27 09:34:14 -0500
committermidipix <writeonce@midipix.org>2016-11-10 23:35:38 -0500
commit9f1faf5047ff86eded6ce5f22f028fc5d6a54758 (patch)
treec1fd8e1b6df2a14ec559783ca86ff09c6fea28b8 /configure
parent78549557f305dbae5efeb86a2ebffe9bfd0cae0d (diff)
downloadperk-9f1faf5047ff86eded6ce5f22f028fc5d6a54758.tar.bz2
perk-9f1faf5047ff86eded6ce5f22f028fc5d6a54758.tar.xz
build system: added fallback compiler recipe.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure b/configure
index 0f23965..98ba2d6 100755
--- a/configure
+++ b/configure
@@ -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
}