summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardbg
blob: fd54fe809aa76b023577e73d5790afbb5dc66c8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

if [ -x ./ardour.bin ] ; then 
    # scons executable
    export LD_LIBRARY_PATH=../libs/ardour
    exec gdb ./ardour.bin
else 
    # autofoo/make executable
    export LD_LIBRARY_PATH=../libs/ardour/.libs
    exec gdb ./ardour
fi