From: Uwe Stöhr Date: Wed, 11 Feb 2015 20:52:36 +0000 (+0100) Subject: configure.py: quote path to python X-Git-Tag: 2.1.4~232 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=6cd6de3eb52a9e4b8678da341c498fd9cd28e56e;p=features.git configure.py: quote path to python this fixes a path issue unveiled while inspecting bug #8478 --- diff --git a/lib/configure.py b/lib/configure.py index 5fdd1e6aa0..f72f0a659c 100644 --- a/lib/configure.py +++ b/lib/configure.py @@ -1460,7 +1460,7 @@ def rescanTeXFiles(): if not os.path.isfile( os.path.join(srcdir, 'scripts', 'TeXFiles.py') ): logger.error("configure: error: cannot find TeXFiles.py script") sys.exit(1) - tfp = cmdOutput("python -tt " + os.path.join(srcdir, 'scripts', 'TeXFiles.py')) + tfp = cmdOutput("python -tt " + '"' + os.path.join(srcdir, 'scripts', 'TeXFiles.py') + '"') logger.info(tfp) logger.info("\tdone") diff --git a/status.21x b/status.21x index 845a5438fe..5caca608a9 100644 --- a/status.21x +++ b/status.21x @@ -93,3 +93,4 @@ What's new * BUILD/INSTALLATION +- Fix a configuration error on Windows causing that TeX files were not scanned.