From bf7af9fd078f6ac18b11aaf7358b297932d85647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uwe=20St=C3=B6hr?= Date: Fri, 31 May 2013 04:23:40 +0200 Subject: [PATCH] Package.cpp: correctly quote configure call - fixes bug #8711 --- src/support/Package.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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'