]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.41
authorfred <fred>
Sun, 24 Mar 2002 20:03:41 +0000 (20:03 +0000)
committerfred <fred>
Sun, 24 Mar 2002 20:03:41 +0000 (20:03 +0000)
bin/make-patch.py
bin/release.py

index 30e870f16cd6a42302a51ad76d14f59b4c7b8796..360d5d70a4a0429ad16d9b59b32c46b490f74cc7 100644 (file)
@@ -1,10 +1,23 @@
 #!@PYTHON@
+
+import sys
+import os
+
+lilypath =''
+try:
+    lilypath = os.environ['LILYPOND_SOURCEDIR'] + '/'
+except IndexError:
+    lilypath = os.environ['HOME'] + 'musix/current'
+lilypath = lilypath + '/bin/'
+sys.path.append(lilypath)
+
+
 from lilypython import *
 import getopt
 import pipes
 
 
-mp_version = '2'
+mp_version = '0.3'
 
 class Options:
     def __init__(self):
index 604e1779f0dccbe3d306a09ebba463eb1902300c..26519263e256eb1128aa28f1e9a0bacba4bd3238 100644 (file)
@@ -1,5 +1,16 @@
 #!@PYTHON@
 
+import sys
+import os
+
+lilypath =''
+try:
+    lilypath = os.environ['LILYPOND_SOURCEDIR'] + '/'
+except IndexError:
+    lilypath = os.environ['HOME'] + 'musix/current'
+lilypath = lilypath + '/bin/'
+sys.path.append(lilypath)
+
 from lilypython import *
 
 os.chdir(lilydirs.topdir)