diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-05 21:01:51 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-05 21:01:51 +0200 |
commit | 91882cf712119794b5d658bcb10d15dd2fad73ba (patch) | |
tree | f2002bbf28e1210b9284940e9e03ace938cb8123 /src/po | |
parent | 8ffc7c8b5f004971cb6f2bdcfbe4f7123cce717c (diff) | |
download | vim-git-91882cf712119794b5d658bcb10d15dd2fad73ba.tar.gz |
patch 8.1.1282: running make in src/po leaves LINGUAS file behindv8.1.1282
Problem: Running make in src/po leaves LINGUAS file behind. (Ken Takata)
Solution: Delete LINGUAS after running msgfmt.
Diffstat (limited to 'src/po')
-rw-r--r-- | src/po/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
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) |