f5394edc4e
git-svn-id: svn://localhost/trunk/ardour2@123 d708f5d6-7413-0410-9779-e7cbd77b26cf
15 lines
285 B
Bash
Executable File
15 lines
285 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export ARDOUR_GLADE_PATH=./glade
|
|
|
|
if [ -x ./ardour.bin ] ; then
|
|
# scons executable
|
|
export LD_LIBRARY_PATH=../libs/ardour
|
|
exec ./ardour.bin --novst $*
|
|
else
|
|
# autofoo/make executable
|
|
export LD_LIBRARY_PATH=../libs/ardour
|
|
exec ./ardour --novst $*
|
|
fi
|
|
|