From 84fc9f99e4082062b9fdfc5b19f936769ee4863d Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Sun, 28 Mar 2004 18:58:18 +0000 Subject: [PATCH] * scripts/lilypond-book.py (Lilypond_snippet.is_outdated): require PNG for texinfo too. * scripts/lilypond-book.py (Lilypond_snippet.is_outdated): treat .png case separately. --- ChangeLog | 3 +++ scripts/lilypond-book.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d6a521c29e..7dcd7b9fba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2004-03-28 Han-Wen Nienhuys + * scripts/lilypond-book.py (Lilypond_snippet.is_outdated): require + PNG for texinfo too. + * po/lilypond.pot: update translation strings. * VERSION: 2.1.35 released diff --git a/scripts/lilypond-book.py b/scripts/lilypond-book.py index b84d2976cd..f9c50825ec 100644 --- a/scripts/lilypond-book.py +++ b/scripts/lilypond-book.py @@ -513,7 +513,7 @@ class Lilypond_snippet (Snippet): base = self.basename () require = ['.ly', '.tex'] - if format == HTML: + if format == HTML or format == TEXINFO: require.append ('.png') require = [os.path.exists (base + x) for x in require] if reduce (lambda a,b: a and b, require) \ -- 2.39.5