mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
11 lines
267 B
Bash
11 lines
267 B
Bash
#!/bin/sh
|
|
|
|
LLVM_PREFIX="%%LLVM_PREFIX%%"
|
|
LLVM_SUFFIX="%%LLVM_SUFFIX%%"
|
|
|
|
tool=$(/bin/realpath $0)
|
|
tool=${tool##*/}
|
|
tool="${LLVM_PREFIX}/bin/${tool%${LLVM_SUFFIX}}"
|
|
LD_LIBRARY_PATH="${LD_LIBRARY_PATH:+${LD_LIBRARY_PATH}:}${LLVM_PREFIX}/lib" \
|
|
exec "${tool}" "${@}"
|