diff options
author | Ross Burton <ross.burton@intel.com> | 2016-05-17 16:48:14 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-05-27 15:38:22 +0200 |
commit | 2318f8ee8be985a0e600fc457b8cc55d5aa9144f (patch) | |
tree | 1c5a61d75d2992a6d65a87141fdd4ad8e360e6c2 /meta-oe/recipes-core | |
parent | 4ff633a23a055ca1cb58b269846cbca649f42cea (diff) | |
download | meta-openembedded-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-config | 7 |
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 a9a416d93..b0f33c8d6 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 @@ | |||
4 | if [ $WANT_LLVM_RELEASE ]; then | 4 | if [ $WANT_LLVM_RELEASE ]; then |
5 | exec `dirname $0`/${TARGET_PREFIX}llvm-config$WANT_LLVM_RELEASE ${@} | 5 | exec `dirname $0`/${TARGET_PREFIX}llvm-config$WANT_LLVM_RELEASE ${@} |
6 | else | 6 | else |
7 | echo "The variable WANT_LLVM_RELEASE is not defined and exported" | 7 | echo "To use llvm-common WANT_LLVM_RELEASE needs to be exported." |
8 | echo "by your build recipe. Go figure." | 8 | echo "For example if this is being called through a recipe:" |
9 | exit 1 | 9 | echo "export WANT_LLVM_RELEASE=\"3.3\"" |
10 | exit 1 | ||
10 | fi | 11 | fi |