Grégoire,
there was a typo in glilypond.pl, now fixed in git (see attached diff). With the patch foo bar .lilypond include example.mscz.ly bar baz works just fine. > the 3 commands you have given to me are working fine. ... don't forget to add `-dNOSAFER' to ps2pdf. Werner
From ba8d13d944da7ee774206268db02b670beb33170 Mon Sep 17 00:00:00 2001 From: Werner Lemberg <w...@gnu.org> Date: Fri, 20 Mar 2015 06:55:45 +0100 Subject: [PATCH] [glilypond] Fix typo. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem reported by Grégoire Babey <gi...@gmx.ch>. --- contrib/glilypond/ChangeLog | 6 ++++++ contrib/glilypond/glilypond.pl | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/contrib/glilypond/ChangeLog b/contrib/glilypond/ChangeLog index 7cf6476..e124b3d 100644 --- a/contrib/glilypond/ChangeLog +++ b/contrib/glilypond/ChangeLog @@ -1,3 +1,9 @@ +2015-03-20 Werner LEMBERG <w...@gnu.org> + + * glilypond.pl <read files or stdin>: Fix typo. + + Problem reported by Grégoire Babey <gi...@gmx.ch>. + 2014-09-03 Bernd Warken <groff-bernd.warken...@web.de> * glilypond.pl: New version 1.3.1 diff --git a/contrib/glilypond/glilypond.pl b/contrib/glilypond/glilypond.pl index 6f8dd83..48101be 100755 --- a/contrib/glilypond/glilypond.pl +++ b/contrib/glilypond/glilypond.pl @@ -546,7 +546,7 @@ our $Read = $ly = new FH_FILE($path_ly); my $include = new FH_READ_FILE($file); - my $res = $include->read-all(); # is a refernce to an array + my $res = $include->read_all(); # is a reference to an array foreach ( @$res ) { chomp; $ly->print($_); -- 2.2.0.rc1