From 6cd6de3eb52a9e4b8678da341c498fd9cd28e56e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Wed, 11 Feb 2015 21:52:36 +0100 Subject: [PATCH] configure.py: quote path to python this fixes a path issue unveiled while inspecting bug #8478 --- lib/configure.py | 2 +- status.21x | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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. -- 2.39.5