From: fred Date: Wed, 27 Mar 2002 01:00:34 +0000 (+0000) Subject: lilypond-1.3.147 X-Git-Tag: release/1.5.59~786 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9285743ee27b1cfdc90acdf5e186d74f4768a550;p=lilypond.git lilypond-1.3.147 --- diff --git a/Documentation/user/dummy-interfaces.itexi b/Documentation/user/dummy-interfaces.itexi new file mode 100644 index 0000000000..65772d0137 --- /dev/null +++ b/Documentation/user/dummy-interfaces.itexi @@ -0,0 +1,6 @@ + +@node Full Grob interface list +@unnumbered Full Grob interface list + +The automatic documentation failed to build. +Visit @uref{http://www.cs.uu.nl/~hanwen/lilypond/Documentation,lilypond online} diff --git a/input/test/lyrics.ly b/input/test/lyrics.ly index 0129a9411e..19b1b54627 100644 --- a/input/test/lyrics.ly +++ b/input/test/lyrics.ly @@ -1,4 +1,4 @@ -\version "1.3.146" +4\version "1.3.146" somewhatLong = \lyrics{ diff --git a/ly/german-chords.ly b/ly/german-chords.ly index 856340d12e..2bdc143f30 100644 --- a/ly/german-chords.ly +++ b/ly/german-chords.ly @@ -9,7 +9,7 @@ #(define german-Bb #f) -#(define (pitch->chord-name-text-banter pitch) +#(define (pitch->chord-name-text-banter pitch additions) (if (equal? (cdr pitch) '(6 -1)) (if german-Bb (cons "B" (accidental->text -1)) diff --git a/ports/mutopia/Mendelssohn-BartholdyF/GNUmakefile b/ports/mutopia/Mendelssohn-BartholdyF/GNUmakefile new file mode 100644 index 0000000000..aa36317067 --- /dev/null +++ b/ports/mutopia/Mendelssohn-BartholdyF/GNUmakefile @@ -0,0 +1,3 @@ + depth = ../../.. + include $(depth)/ports/ports.make + diff --git a/ports/mutopia/SorF/GNUmakefile b/ports/mutopia/SorF/GNUmakefile new file mode 100644 index 0000000000..aa36317067 --- /dev/null +++ b/ports/mutopia/SorF/GNUmakefile @@ -0,0 +1,3 @@ + depth = ../../.. + include $(depth)/ports/ports.make + diff --git a/scripts/update-lily.py b/scripts/update-lily.py index 99e7c68cfd..97e4b58d36 100644 --- a/scripts/update-lily.py +++ b/scripts/update-lily.py @@ -62,7 +62,7 @@ cd %n-%v && ./configure --prefix=$HOME/usr && make all web ) >> %n-%v/log.txt 2>&1 && rm -f %n && -ln -s %n%-%v %n +ln -s %n-%v %n ''' @@ -447,8 +447,9 @@ if 1: progress (_ ("building %s...") % latest) os.chdir (build_root) - if build (latest) and previous and remove_previous_p: - system ('rm -rf %s' % os.path.join (build_root, previous)) + if build (latest): + if previous and remove_previous_p: + system ('rm -rf %s' % os.path.join (build_root, previous)) else: if notify: system ('(date; uname -a) | mail -s "%s failed" %s' % (program_name, notify))