pantry/projects/tea.xyz/gx/cc/ld
Max Howell f836b167a1 “superenv” (#185)
* fixes for dylib ids on darwin (sadly elaborate)

* wip
2022-10-17 13:45:32 -04:00

12 lines
173 B
Bash
Executable file

#!/bin/sh
exe="$(basename $0)"
if test -z "$TEA_PREFIX"
then
echo '$TEA_PREFIX mysteriously unset' >&2
exit 1
else
exec /usr/bin/"$exe" "$@" -rpath "$TEA_PREFIX"
fi