mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 11:46:25 +01:00
This was needed for checking access to libjack.dylib in Ardour, but Tracks ships without JACK support, so this is unnecessary.
16 lines
481 B
Bash
16 lines
481 B
Bash
#!/bin/sh
|
|
|
|
#
|
|
# NOTE: Leopard appears not to set PATH for this script, so be absolutely certain
|
|
# never to use any other program without fully specifying the path.
|
|
#
|
|
|
|
# this needs to be set so that we can restore the environment when we want to find JACK (or similar)
|
|
export PREBUNDLE_ENV="$(env)"
|
|
|
|
# all clear, lets go
|
|
# this quoting is all needed to handle installation
|
|
# in folders likes /home/user/Frank's Wild Years
|
|
|
|
CWD="`/usr/bin/dirname \"$0\"`"
|
|
exec "$CWD/Tracks.bin" "$@"
|