9609fb978d
Add LLDB to the package now that is supports stage. Add missing swig dependancy. Fix wrapper script for prefixed command links.
10 lines
252 B
Bash
10 lines
252 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
LLVM_PREFIX="%%LLVM_PREFIX%%"
|
|
TOOL_PREFIX="%%TOOL_PREFIX%%"
|
|
|
|
tool=$(basename $0)
|
|
tool="${LLVM_PREFIX}/bin/${tool#${TOOL_PREFIX}}"
|
|
LD_LIBRARY_PATH="${LD_LIBRARY_PATH:+${LD_LIBRARY_PATH}:}${LLVM_PREFIX}/lib" \
|
|
"${tool}" "${@}"
|