X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scripts%2Fauxiliar%2Fmakelsr.py;h=a03466310b36cf47d7e91f12c7e6f79422a680d3;hb=6c2ef51262462ec2758d4c1ebf722be1119453c2;hp=adf8681638f72781bbb915979403ff47ad613668;hpb=69793a6cc5fbe5d29f07922c765fecb55a9b4ec5;p=lilypond.git diff --git a/scripts/auxiliar/makelsr.py b/scripts/auxiliar/makelsr.py index adf8681638..a03466310b 100755 --- a/scripts/auxiliar/makelsr.py +++ b/scripts/auxiliar/makelsr.py @@ -73,6 +73,8 @@ elif os.path.isfile("build/out/bin/convert-ly"): else: conv_path='' convert_ly=conv_path+'convert-ly' +lilypond_bin=conv_path+'lilypond' + print 'using '+convert_ly unsafe = [] @@ -138,7 +140,7 @@ def escape_backslashes_in_header(snippet): # one backreference to group 1 (that's two 2\ ). new_header = re.sub("@code\{\\\\([a-zA-Z])", "@code{\\\\\\\\\\1", header) escaped_snippet = (snippet[:header_char_number_start] + - new_header + snippet[header_char_number_end:]) + new_header + snippet[header_char_number_end:]) return escaped_snippet def copy_ly (srcdir, name, tags): @@ -178,8 +180,7 @@ def copy_ly (srcdir, name, tags): os.remove (dest + '~') # no need to check snippets from input/new if in_dir and in_dir in srcdir: - # -V seems to make unsafe snippets fail nicer/sooner - e = os.system ("lilypond -V -dno-print-pages -dsafe -o /tmp/lsrtest '%s'" % dest) + e = os.system ("%s -dno-print-pages -dsafe -o /tmp/lsrtest '%s'" %(lilypond_bin, dest)) if e: unsafe.append (dest)