]> git.donarmstrong.com Git - lilypond.git/commitdiff
Trivial fix for makelsr.py
authorGraham Percival <graham@percival-music.ca>
Mon, 18 Jun 2007 23:41:28 +0000 (16:41 -0700)
committerGraham Percival <graham@percival-music.ca>
Mon, 18 Jun 2007 23:41:28 +0000 (16:41 -0700)
buildscripts/makelsr.py

index 31f630f88573cd85c3272db377806ead894dd8e8..3cd1bbad0e367e4db6b72b5cc2f13498db231963 100755 (executable)
@@ -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)