summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-06-11 10:32:16 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-06-11 10:32:16 -0400
commit61e302c6bb9b5a92a2fe6b4f953022e95e794f72 (patch)
tree82a36d626e7ee8368a6fc55df41f1c1a7b751f8b
parent39215e04a9cf33500909ff8ecb308bf06e474f02 (diff)
make startup helper script use actual version, not a hard-coded 3.0 value
-rw-r--r--tools/linux_packaging/ardour.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/linux_packaging/ardour.sh.in b/tools/linux_packaging/ardour.sh.in
index 6545e80b40..a65a85d8e9 100644
--- a/tools/linux_packaging/ardour.sh.in
+++ b/tools/linux_packaging/ardour.sh.in
@@ -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