ardour/gtk2_ardour/ardev
Taybin Rutkin f020b4e1e6 Reverted --display=localhost:0.0
git-svn-id: svn://localhost/trunk/ardour2@240 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-01-04 13:16:26 +00:00

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