summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorTorben Hohn <torbenh@gmx.de>2010-06-02 16:35:41 +0000
committerTorben Hohn <torbenh@gmx.de>2010-06-02 16:35:41 +0000
commit71c876109f88ee5f53c2feb6f8a9153947c691bb (patch)
treea7d7b4f55b1f809a3af690a6c828651856463506 /libs
parent51ad790745400eeb38547fa4de842202fec934b8 (diff)
add -P flag to the session command return value.
git-svn-id: svn://localhost/ardour2/branches/3.0@7215 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/session_state.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index 19b8b58fbe..92be2da9ab 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -700,7 +700,7 @@ Session::jack_session_event (jack_session_event_t * event)
if (save_template( timebuf )) {
event->flags = JackSessionSaveError;
} else {
- string cmd ("ardour3 -U ");
+ string cmd ("ardour3 -P -U ");
cmd += event->client_uuid;
cmd += " -T ";
cmd += timebuf;
@@ -716,7 +716,7 @@ Session::jack_session_event (jack_session_event_t * event)
sys::path xml_path (_session_dir->root_path());
xml_path /= legalize_for_path (timebuf) + statefile_suffix;
- string cmd ("ardour3 -U ");
+ string cmd ("ardour3 -P -U ");
cmd += event->client_uuid;
cmd += " \"";
cmd += xml_path.to_string();