summaryrefslogtreecommitdiffstats
path: root/recipes/llvm/llvm-common/llvm-config
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/llvm/llvm-common/llvm-config')
-rw-r--r--recipes/llvm/llvm-common/llvm-config10
1 files changed, 0 insertions, 10 deletions
diff --git a/recipes/llvm/llvm-common/llvm-config b/recipes/llvm/llvm-common/llvm-config
deleted file mode 100644
index a9a416d..0000000
--- a/recipes/llvm/llvm-common/llvm-config
+++ /dev/null
@@ -1,10 +0,0 @@
1#!/bin/sh
2# Wrapper script for real llvm-config. Simply calls
3
4if [ $WANT_LLVM_RELEASE ]; then
5 exec `dirname $0`/${TARGET_PREFIX}llvm-config$WANT_LLVM_RELEASE ${@}
6else
7 echo "The variable WANT_LLVM_RELEASE is not defined and exported"
8 echo "by your build recipe. Go figure."
9 exit 1
10fi