From: Uwe Stöhr Date: Fri, 31 May 2013 02:23:40 +0000 (+0200) Subject: Package.cpp: correctly quote configure call X-Git-Tag: 2.1.0beta1~106 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=bf7af9fd078f6ac18b11aaf7358b297932d85647;p=features.git Package.cpp: correctly quote configure call - fixes bug #8711 --- diff --git a/src/support/Package.cpp b/src/support/Package.cpp index 24cf8ca96b..5c6b3059e1 100644 --- a/src/support/Package.cpp +++ b/src/support/Package.cpp @@ -141,7 +141,8 @@ Package::Package(string const & command_line_arg0, FileName const configure_script(addName(system_support().absFileName(), "configure.py")); configure_command_ = os::python() + ' ' + quoteName(configure_script.toFilesystemEncoding(), quote_python) + - with_version_suffix() + " --binary-dir=" + binary_dir().absFileName(); + with_version_suffix() + " --binary-dir=" + + quoteName(binary_dir().absFileName(), quote_python); LYXERR(Debug::INIT, "\n" << "\tbinary_dir " << binary_dir().absFileName() << '\n'