mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
f836b167a1
* fixes for dylib ids on darwin (sadly elaborate) * wip
12 lines
173 B
Bash
Executable file
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
|