mirror of
https://git.freebsd.org/ports.git
synced 2025-06-15 17:50:31 -04:00
I purposely didn't bump PORTREVISION for this as it's not really worth a rebuild even though technically required. Approved by: brooks
11 lines
279 B
Bash
11 lines
279 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
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}" "${@}"
|