From: Bram Moolenaar Date: Sun, 5 May 2019 19:01:51 +0000 (+0200) Subject: patch 8.1.1282: running make in src/po leaves LINGUAS file behind X-Git-Tag: v8.1.1282 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91882cf712119794b5d658bcb10d15dd2fad73ba;p=vim patch 8.1.1282: running make in src/po leaves LINGUAS file behind Problem: Running make in src/po leaves LINGUAS file behind. (Ken Takata) Solution: Delete LINGUAS after running msgfmt. --- diff --git a/src/po/Makefile b/src/po/Makefile index cc56b83d2..6049b497e 100644 --- a/src/po/Makefile +++ b/src/po/Makefile @@ -168,10 +168,12 @@ $(PACKAGE).pot: ../*.c ../if_perl.xs ../GvimExt/gvimext.cpp ../globals.h ../if_p vim.desktop: vim.desktop.in $(POFILES) @echo $(LANGUAGES) | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS $(MSGFMT) --desktop -d . --template vim.desktop.in -o vim.desktop + rm -f LINGUAS gvim.desktop: gvim.desktop.in $(POFILES) @echo $(LANGUAGES) | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS $(MSGFMT) --desktop -d . --template gvim.desktop.in -o gvim.desktop + rm -f LINGUAS update-po: $(LANGUAGES) diff --git a/src/version.c b/src/version.c index f137b8356..90b6904f2 100644 --- a/src/version.c +++ b/src/version.c @@ -767,6 +767,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1282, /**/ 1281, /**/