summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardev
blob: 6594e4c11fb18fc092da960ea8ab21594e662375 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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