13
0
livetrax/gtk2_ardour/ardev

14 lines
252 B
Plaintext
Raw Normal View History

#!/bin/sh
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