]> git.donarmstrong.com Git - lilypond.git/blobdiff - buildscripts/makelsr.py
Also add configure options to checksum.
[lilypond.git] / buildscripts / makelsr.py
index ab18da2ace687264a5fd2e9a9b7f1ae16d6467ed..8e8339818b3a6eaaea64a5458880d27edc9e3680 100755 (executable)
@@ -4,7 +4,11 @@ import os
 import os.path
 import shutil
 
-dirs = ['ancient','chords','connecting','contemporary','expressive','education','guitar','parts','pitch','repeats','scheme','spacing','staff','text','vocal','other','nonmusic','engravers','instrument']
+dirs = []
+dirs.extend(['pitches', 'rhythms'])
+
+dirs.extend(['real-music'])
+#dirs = ['ancient','chords','connecting','contemporary','expressive','education','guitar','parts','pitch','repeats','scheme','spacing','staff','text','vocal','other','nonmusic','engravers','instrument']
 notsafe=[]
 
 try:
@@ -27,7 +31,8 @@ def copy_dir_with_test(srcdir, destdir):
        for file in file_names:
                if (file.endswith ('.ly')):
                        src = os.path.join (srcdir, file)
-                       dest = os.path.join (destdir, file)
+                       destname = file.replace (';', '-')
+                       dest = os.path.join (destdir, destname)
                        copy_with_warning(src, dest)
                        os.system('convert-ly -e ' + dest)
                        if os.path.exists( dest + '~' ):