From d7cec268fc4a323a3b8e61632c577595d6dba740 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Thu, 16 May 2002 22:56:58 +0000 Subject: [PATCH] dif name --- VERSION | 4 ++-- aclocal.m4 | 2 ++ lily/kpath.cc | 1 - scm/lily.scm | 3 ++- scm/music-functions.scm | 5 +---- stepmake/bin/package-diff.py | 7 +++++-- 6 files changed, 12 insertions(+), 10 deletions(-) diff --git a/VERSION b/VERSION index 9b3ebc3c30..5f243dd067 100644 --- a/VERSION +++ b/VERSION @@ -1,8 +1,8 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=1 MINOR_VERSION=5 -PATCH_LEVEL=55 -MY_PATCH_LEVEL=hjj2 +PATCH_LEVEL=56 +MY_PATCH_LEVEL= # use the above to send patches: MY_PATCH_LEVEL is always empty for a # released version. diff --git a/aclocal.m4 b/aclocal.m4 index 17c80f15f9..60b024c15a 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,3 +1,5 @@ +dnl WARNING WARNING WARNING WARNING +dnl do not edit! this is aclocal.m4, generated from stepmake/aclocal.m4 dnl aclocal.m4 -*-shell-script-*- dnl StepMake subroutines for configure.in diff --git a/lily/kpath.cc b/lily/kpath.cc index c1d2bffaa0..473b955120 100644 --- a/lily/kpath.cc +++ b/lily/kpath.cc @@ -26,7 +26,6 @@ extern "C" { #include "string.hh" #include "main.hh" #include "kpath.hh" -#include "lily-version.hh" #include "warn.hh" String diff --git a/scm/lily.scm b/scm/lily.scm index 66dae47b15..2108e99262 100644 --- a/scm/lily.scm +++ b/scm/lily.scm @@ -114,11 +114,12 @@ (define (ly-load x) + ;; should check verbose +;; (format (current-error-port) "[~s]" x) (primitive-load (%search-load-path x)) ) -(ly-load "output-lib.scm") diff --git a/scm/music-functions.scm b/scm/music-functions.scm index 81d56d3881..8eca9bea45 100644 --- a/scm/music-functions.scm +++ b/scm/music-functions.scm @@ -261,10 +261,7 @@ this is not an override (define (check-start-chords music) "Check music expression for a Simultaneous_music containing notes -(ie. Request_chords), without context specification. - -Called from parser. -" +(ie. Request_chords), without context specification. Called from parser." (let* ((es (ly-get-mus-property music 'elements)) (e (ly-get-mus-property music 'element)) diff --git a/stepmake/bin/package-diff.py b/stepmake/bin/package-diff.py index 357ab5046a..361a6c74fc 100644 --- a/stepmake/bin/package-diff.py +++ b/stepmake/bin/package-diff.py @@ -306,8 +306,11 @@ if conf and not outdir: outdir = 'out-' + conf if not patch_name: - to_diff + '.diff' -patch_name = compat_abspath (os.path.join (outdir, to_diff + '.diff')) + patch_name = os.path.join (outdir, '%s-%s-%s.diff' % (package.name, + version_tuple_to_str (flags.from_version), + version_tuple_to_str (flags.to_version))) + + patch_name = compat_abspath (patch_name) from_diff = '/tmp/package-diff/' + from_diff to_diff = '/tmp/package-diff/' + to_diff -- 2.39.5