13
0

add -P flag to the session command return value.

git-svn-id: svn://localhost/ardour2/branches/3.0@7215 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Torben Hohn 2010-06-02 16:35:41 +00:00
parent 51ad790745
commit 71c876109f

View File

@ -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();