13
0

make startup helper script use actual version, not a hard-coded 3.0 value

This commit is contained in:
Paul Davis 2013-06-11 10:32:16 -04:00
parent 39215e04a9
commit 61e302c6bb

View File

@ -53,9 +53,9 @@ sed "s?@ROOTDIR@/loaders?$LIB_DIR/loaders?" < $ETC_DIR/gdk-pixbuf.loaders.in > $
if [ "T" = "$DEBUG" ]; then
export ARDOUR_INSIDE_GDB=1
exec gdb $INSTALL_DIR/bin/ardour-3.0
exec gdb $INSTALL_DIR/bin/ardour-%VER%
else
exec $INSTALL_DIR/bin/ardour-3.0 $ARGS
exec $INSTALL_DIR/bin/ardour-%VER% $ARGS
fi