From: Graham Percival Date: Mon, 18 Jun 2007 23:41:28 +0000 (-0700) Subject: Trivial fix for makelsr.py X-Git-Tag: release/2.11.28-1~21^2~60 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=714982eb607eb30c7c058ce8c9447a651ddd13c2;p=lilypond.git Trivial fix for makelsr.py --- 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)