changeset 16557:86e69ed040e3 v8.1.1282

patch 8.1.1282: running make in src/po leaves LINGUAS file behind commit https://github.com/vim/vim/commit/91882cf712119794b5d658bcb10d15dd2fad73ba Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 5 21:01:51 2019 +0200 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.
author Bram Moolenaar <Bram@vim.org>
date Sun, 05 May 2019 21:15:05 +0200
parents a6b49c751cac
children 984c5ecd872c
files src/po/Makefile src/version.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/po/Makefile
+++ b/src/po/Makefile
@@ -168,10 +168,12 @@ checkclean:
 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)
 
--- a/src/version.c
+++ b/src/version.c
@@ -768,6 +768,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1282,
+/**/
     1281,
 /**/
     1280,