From: David Kastrup Date: Sat, 27 Jul 2013 14:44:54 +0000 (+0200) Subject: Issue 3467: lilypond-book 2.17.21 and spaces in file path X-Git-Tag: release/2.17.24-1~16^2~10 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=39bf694ef4dedbb350960f7c37955c8fe9ce27e3;p=lilypond.git Issue 3467: lilypond-book 2.17.21 and spaces in file path --- diff --git a/python/book_latex.py b/python/book_latex.py index 756bc2c651..a47c950e24 100644 --- a/python/book_latex.py +++ b/python/book_latex.py @@ -189,7 +189,7 @@ def get_latex_textwidth (source, global_options): progress (_ ("Running `%s' on file `%s' to detect default page settings.\n") % (global_options.latex_program, tmpfile)) - cmd = 'TEXINPUTS=%s:$TEXINPUTS %s %s' \ + cmd = 'TEXINPUTS="%s:$TEXINPUTS" %s %s' \ % (global_options.input_dir, global_options.latex_program, tmpfile) debug ("Executing: %s\n" % cmd) run_env = os.environ.copy()