Remove command line string quoting when forming jack command line on windows
This used to be necessary when we started the JACK server but now that we write a .jackdrc it only causes problems. I have fixed this before in some branch, must have been lost in a merge.
This commit is contained in:
parent
ad906794b8
commit
f74521b0cd
@ -891,11 +891,7 @@ ARDOUR::get_jack_command_line_string (JackCommandLineOptions& options, string& c
|
|||||||
ostringstream oss;
|
ostringstream oss;
|
||||||
|
|
||||||
for (vector<string>::const_iterator i = args.begin(); i != args.end();) {
|
for (vector<string>::const_iterator i = args.begin(); i != args.end();) {
|
||||||
#ifdef WIN32
|
|
||||||
oss << quote_string (*i);
|
|
||||||
#else
|
|
||||||
oss << *i;
|
oss << *i;
|
||||||
#endif
|
|
||||||
if (++i != args.end()) oss << ' ';
|
if (++i != args.end()) oss << ' ';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user