blob: 5256b8cd06d2f98bae489049f8f5e7ac9681c286 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# Wrapper script for real llvm-config. Simply calls
if [ $WANT_LLVM_RELEASE ]; then
exec `dirname $0`/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
fi
|