From: Jan Nieuwenhuizen Date: Wed, 5 Dec 2001 13:12:52 +0000 (+0100) Subject: patch::: 1.4.9.jcn3 X-Git-Tag: release/1.4.10~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7790677663a832578889cc68c0e0c7b733876b35;p=lilypond.git patch::: 1.4.9.jcn3 1.4.9.jcn3 --- diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000000..fd0c7ae134 --- /dev/null +++ b/.cvsignore @@ -0,0 +1,22 @@ +GNUmakefile +TAGS +config.cache +config.h +config.log +config.make +config.status +configure +.dstreamrc +.gdbinit +*~ +#* +*.txt +*.html +*.png +out +out-www +afm +share +tfm +tfm.[0-9] +stepmake diff --git a/CHANGES b/CHANGES index 61e718ff75..a9ee54d0bb 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,8 @@ -1.4.9.jcn2 +1.4.9.jcn3 ========== +* Really included .cvsignore. + * Included Han-Wen's uu1 windows fixes. * Bugfix: lilypond-profile.sh: append to GS_FONTPATH, GS_LIB. @@ -12,7 +14,7 @@ * Updated cygwin installer. -* ly2dvi: Don't accept filenames with spaces. +* ly2dvi: Don't accept filenames with spaces (+ fix). 1.4.9 ===== diff --git a/GNUmakefile.in b/GNUmakefile.in index 6240b6bcc9..109a201be4 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -20,7 +20,7 @@ SCRIPTS = configure aclocal.m4 README_FILES = DEDICATION COPYING NEWS CHANGES ROADMAP README_TXT_FILES = AUTHORS.txt README.txt INSTALL.txt FAQ.txt IN_FILES := $(wildcard *.in) -EXTRA_DIST_FILES = lilypond-font-lock.el lilypond-mode.el lilypond-init.el vimrc VERSION $(README_FILES) $(SCRIPTS) $(IN_FILES) emacsclient.patch mktexnam.patch lexer-gcc-3.0.patch +EXTRA_DIST_FILES = lilypond-font-lock.el lilypond-mode.el lilypond-init.el vimrc VERSION $(README_FILES) $(SCRIPTS) $(IN_FILES) emacsclient.patch mktexnam.patch lexer-gcc-3.0.patch .cvsignore NON_ESSENTIAL_DIST_FILES = $(README_TXT_FILES) INSTALLATION_DIR=$(datadir) INSTALLATION_FILES=$(configuration) VERSION diff --git a/VERSION b/VERSION index 5c97b9d376..e6a4d4d44b 100644 --- a/VERSION +++ b/VERSION @@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=1 MINOR_VERSION=4 PATCH_LEVEL=9 -MY_PATCH_LEVEL=jcn2 +MY_PATCH_LEVEL=jcn3 # use the above to send patches: MY_PATCH_LEVEL is always empty for a # released version. diff --git a/scripts/ly2dvi.py b/scripts/ly2dvi.py index 754c6aaf74..1857dcef5d 100644 --- a/scripts/ly2dvi.py +++ b/scripts/ly2dvi.py @@ -806,9 +806,7 @@ if files and files[0] != '-': outbase = strip_extension (outbase, i) files = map (abspath, files) - all = files - all.append (output_name) - for i in all: + for i in files[:] + [output_name]: if string.find (i, ' ') >= 0: user_error (_ ("filename should not contain spaces: `%s'") % i)