aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-core
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2016-05-17 16:48:14 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2016-05-27 15:38:22 +0200
commit2318f8ee8be985a0e600fc457b8cc55d5aa9144f (patch)
tree1c5a61d75d2992a6d65a87141fdd4ad8e360e6c2 /meta-oe/recipes-core
parent4ff633a23a055ca1cb58b269846cbca649f42cea (diff)
downloadmeta-openembedded-contrib-2318f8ee8be985a0e600fc457b8cc55d5aa9144f.tar.gz
llvm: make llvm-config wrapper error message more understandable
The llvm-config wrapper has an error message that is quite abrupt, expand it so it helps the user. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-core')
-rw-r--r--meta-oe/recipes-core/llvm/llvm-common/llvm-config7
1 files changed, 4 insertions, 3 deletions
diff --git a/meta-oe/recipes-core/llvm/llvm-common/llvm-config b/meta-oe/recipes-core/llvm/llvm-common/llvm-config
index a9a416d931..b0f33c8d68 100644
--- a/meta-oe/recipes-core/llvm/llvm-common/llvm-config
+++ b/meta-oe/recipes-core/llvm/llvm-common/llvm-config
@@ -4,7 +4,8 @@
if [ $WANT_LLVM_RELEASE ]; then
exec `dirname $0`/${TARGET_PREFIX}llvm-config$WANT_LLVM_RELEASE ${@}
else
- echo "The variable WANT_LLVM_RELEASE is not defined and exported"
- echo "by your build recipe. Go figure."
- exit 1
+ echo "To use llvm-common WANT_LLVM_RELEASE needs to be exported."
+ echo "For example if this is being called through a recipe:"
+ echo "export WANT_LLVM_RELEASE=\"3.3\""
+ exit 1
fi