]> git.donarmstrong.com Git - lilypond.git/commitdiff
Bugfix: also link .map files.
authorJan Nieuwenhuizen <janneke@gnu.org>
Sat, 9 Apr 2005 20:21:07 +0000 (20:21 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Sat, 9 Apr 2005 20:21:07 +0000 (20:21 +0000)
ChangeLog
GNUmakefile.in
input/regression/beam-quarter.ly

index 6457ef014ab65c2a8dc1219f473d749d48e010a2..4fe4a575f7450ed273a16a2f23ae0c08929f8256 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-04-09  Jan Nieuwenhuizen  <janneke@gnu.org>
+
+       * GNUmakefile.in: Bugfix: also link .map files.
+
 2005-04-09  Nicolas Sceaux  <nicolas.sceaux@free.fr>
 
        * scm/music-functions.scm (music->make-music): generate 
index 862b9e52e84c5d0891c6c15ae6dadc776e775e82..48dd4f1e3d5e7dc17f3f1572d06fc5ac9836e7fa 100644 (file)
@@ -125,16 +125,18 @@ $(tree-prefix)/lilypond-force link-tree: GNUmakefile
                ln -s $(abs-srcdir)/tex source && \
                ln -s ../../../../tex/$(outconfbase) tex-out && \
                ln -s ../../../../mf/$(outconfbase) mf-out
-       cd $(tree-prefix)/fonts/type1 && \
-               ln -s ../../../../../mf/$(outconfbase)/*.pfa .
+       cd $(tree-prefix)/fonts/enc && \
+               ln -s ../../../../../mf/$(outconfbase)/*.enc .
+       cd $(tree-prefix)/fonts/map && \
+               ln -s ../../../../../mf/$(outconfbase)/*.map .
        cd $(tree-prefix)/fonts/otf && \
                ln -s ../../../../../mf/$(outconfbase)/*.otf .
        cd $(tree-prefix)/fonts/svg && \
                ln -s ../../../../../mf/$(outconfbase)/*.svg .
        cd $(tree-prefix)/fonts/tfm && \
                ln -s ../../../../../mf/$(outconfbase)/*.tfm .
-       cd $(tree-prefix)/fonts/enc && \
-               ln -s ../../../../../mf/$(outconfbase)/*.enc .
+       cd $(tree-prefix)/fonts/type1 && \
+               ln -s ../../../../../mf/$(outconfbase)/*.pfa .
        cd $(tree-prefix)/fonts && \
                ln -s $(abs-srcdir)/mf source && \
                true
index a6eb5ec5cd0d5de8dcf131f99916218752748cce..f125a47f27f4b1593fc7ddb22feb7c3b1d4c6a26 100644 (file)
@@ -5,9 +5,7 @@
   texidoc= "Quarter notes may be beamed: the beam is halted momentarily."
 }
 
-\score {
-  \relative c'' {
-    c8[ c4 c8] % should warn here!
-  }
-  \layout { raggedright = ##t }
+\layout { raggedright = ##t }
+\relative c'' {
+  c8[ c4 c8] % should warn here!
 }