]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 11 Nov 2005 10:46:36 +0000 (10:46 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 11 Nov 2005 10:46:36 +0000 (10:46 +0000)
ChangeLog
VERSION
scripts/lilypond-book.py

index 3a8f5e17772c6c660e9420da40e8a4a500be9a51..e694884b4935bd03bcff116bf4b26434e51ce326 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-11-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
+
+       * scripts/lilypond-book.py: quote shell arguments. 
+
 2005-11-03  Jan Nieuwenhuizen  <janneke@gnu.org>
 
        * flower/file-path.cc (find): Bugfix: Return name of file found.
@@ -72,6 +76,8 @@
 
 2005-10-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * VERSION (PATCH_LEVEL): release 2.6.4
+
        * lily/hara-kiri-group-spanner.cc (consider_suicide): backport:
        only consider break_index for broken spanner.  
 
diff --git a/VERSION b/VERSION
index 8fb5e4cba73435d7d7cd9fa3cf7d5001bab1c41e..4ad2298bf7f354175ba93ba302d3c47d5b533588 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1,6 +1,6 @@
 PACKAGE_NAME=LilyPond
 MAJOR_VERSION=2
 MINOR_VERSION=6
-PATCH_LEVEL=4
+PATCH_LEVEL=5
 MY_PATCH_LEVEL=
 
index 9618c066b6d5e19f75c0f05953f460a210909391..92ec7b26ecdbaeb5513b9a9bb6c3622e12743485 100644 (file)
@@ -33,6 +33,7 @@ import glob
 import stat
 import string
 import tempfile
+import commands
 
 # Users of python modules should include this snippet
 # and customize variables below.
@@ -1596,8 +1597,7 @@ def main ():
                process_cmd = lilypond_binary \
                              + ' --formats=%s --backend eps ' % formats
 
-       if process_cmd:
-               process_cmd += string.join ([(' -I %s' % p)
+       process_cmd += string.join ([(' -I %s' % commands.mkarg (p))
                                             for p in include_path])
 
        ly.identify (sys.stderr)