From a40e959dba858a468bede003e1f07438c6700fad Mon Sep 17 00:00:00 2001 From: John Mandereau Date: Sat, 8 Mar 2008 13:30:23 +0100 Subject: [PATCH] lilypond-book: touch output files in all formats --- scripts/lilypond-book.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/scripts/lilypond-book.py b/scripts/lilypond-book.py index 7fe8210a9d..6088677516 100644 --- a/scripts/lilypond-book.py +++ b/scripts/lilypond-book.py @@ -1644,10 +1644,8 @@ def write_if_updated (file_name, lines): progress ('\n') # this prevents make from always rerunning lilypond-book: - # .texi target must be touched in order to be up to date - if global_options.format == 'texinfo': - os.utime (file_name, None) - return + # output file must be touched in order to be up to date + os.utime (file_name, None) except: pass -- 2.39.5