From c443321d5ea2ed7ffa519bf6f9651de95122553a Mon Sep 17 00:00:00 2001 From: Luthaf Date: Sun, 16 Feb 2014 17:06:05 +0000 Subject: [PATCH] =?UTF-8?q?Correction=20d'un=20bug=20dans=20le=20cas=20o?= =?UTF-8?q?=C3=B9=20la=20variable=20TEXIMPUTS=20n'existe=20pas.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- songbook/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 songbook/build.py diff --git a/songbook/build.py b/songbook/build.py old mode 100644 new mode 100755 index 347d2835..bf68be0f --- a/songbook/build.py +++ b/songbook/build.py @@ -177,7 +177,7 @@ def buildsongbook(sb, basename): # Make TeX file makeTexFile(sb, texFile) - os.environ['TEXINPUTS'] += os.pathsep + os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', 'latex') + os.environ['TEXINPUTS'] = os.pathsep + os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', 'latex') os.environ['TEXINPUTS'] += os.pathsep + os.path.join(sb['datadir'], 'latex') # First pdflatex pass