From: Jan Nieuwenhuizen Date: Sat, 9 Apr 2005 20:21:07 +0000 (+0000) Subject: Bugfix: also link .map files. X-Git-Tag: release/2.5.19~25 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4357fbdea30f4f5e831df43801a4e3b49de2a712;p=lilypond.git Bugfix: also link .map files. --- diff --git a/ChangeLog b/ChangeLog index 6457ef014a..4fe4a575f7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-04-09 Jan Nieuwenhuizen + + * GNUmakefile.in: Bugfix: also link .map files. + 2005-04-09 Nicolas Sceaux * scm/music-functions.scm (music->make-music): generate diff --git a/GNUmakefile.in b/GNUmakefile.in index 862b9e52e8..48dd4f1e3d 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -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 diff --git a/input/regression/beam-quarter.ly b/input/regression/beam-quarter.ly index a6eb5ec5cd..f125a47f27 100644 --- a/input/regression/beam-quarter.ly +++ b/input/regression/beam-quarter.ly @@ -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! }