Script portability fixes.

git-svn-id: svn://localhost/ardour2/trunk@936 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2006-09-30 15:58:21 +00:00
parent 09ee5d9967
commit ca7d9b4016
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
dir=`dirname "$0"`
source $dir/ardev_common.sh
. $dir/ardev_common.sh
exec gdb gtk2_ardour/ardour.bin $*

View File

@ -1,3 +1,3 @@
#!/bin/sh
source `dirname "$0"`/ardev_common.sh
. `dirname "$0"`/ardev_common.sh
exec gtk2_ardour/ardour.bin --novst $*

View File

@ -1,3 +1,3 @@
#!/bin/sh
source ardev_common.sh
. ardev_common.sh
exec valgrind --num-callers=50 --tool=memcheck gtk2_ardour/ardour.bin --novst $*