From 714982eb607eb30c7c058ce8c9447a651ddd13c2 Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Mon, 18 Jun 2007 16:41:28 -0700 Subject: [PATCH] Trivial fix for makelsr.py --- buildscripts/makelsr.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/buildscripts/makelsr.py b/buildscripts/makelsr.py index 31f630f885..3cd1bbad0e 100755 --- a/buildscripts/makelsr.py +++ b/buildscripts/makelsr.py @@ -4,8 +4,7 @@ import os import os.path import shutil -dirs = -['ancient','chords','connecting','contemporary','expressive','education','guitar','parts','pitch','repeats','scheme','spacing','staff','text','vocal','other','non-music','engravers','instrument-specific'] +dirs = ['ancient','chords','connecting','contemporary','expressive','education','guitar','parts','pitch','repeats','scheme','spacing','staff','text','vocal','other','non-music','engravers','instrument-specific'] notsafe=[] try: @@ -29,7 +28,7 @@ def copy_dir_with_test(srcdir, destdir): dest = os.path.join (destdir, file) copy_with_warning(src, dest) os.system('convert-ly -e ' + dest) - s = os.system('lilypond -dno-print-pages -dsafe -o /tmp/lsrtest ' + dest) + s = os.system('nice lilypond -dno-print-pages -dsafe -o /tmp/lsrtest ' + dest) if s: notsafe.append(dest) -- 2.39.5