From: Graham Percival Date: Sat, 12 May 2007 07:33:39 +0000 (-0700) Subject: LSR: speed increase for buildscripts/makelsr.py X-Git-Tag: release/2.11.24-1~8^2^2^2~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2f094ccb70b21f7068dc0469be62b83476d81d02;p=lilypond.git LSR: speed increase for buildscripts/makelsr.py --- diff --git a/buildscripts/makelsr.py b/buildscripts/makelsr.py index e959eef31c..2206e61eeb 100755 --- a/buildscripts/makelsr.py +++ b/buildscripts/makelsr.py @@ -28,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 -dsafe -dbackend=svg -o /tmp/lsrtest ' + dest) + s = os.system('lilypond -dno-print-pages -dsafe -o /tmp/lsrtest ' + dest) if s: notsafe.append(dest)