diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-26 14:26:06 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-27 19:58:41 -0400 |
commit | cd49b073e90cb34591193216ede3b11c01350c18 (patch) | |
tree | abb8c1260cf6a12c16b86d509080a05ff3bec7de /src | |
parent | dcc2b25529e3e6cdd89bf7ed19e24d6a73a2e8c3 (diff) | |
download | rneovim-cd49b073e90cb34591193216ede3b11c01350c18.tar.gz rneovim-cd49b073e90cb34591193216ede3b11c01350c18.tar.bz2 rneovim-cd49b073e90cb34591193216ede3b11c01350c18.zip |
Fix localization: Fix build: Fix dangling references.
Problem: Makefile references some files that don't exist anymore.
Solution: Remove those references.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/po/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/po/Makefile b/src/nvim/po/Makefile index 2b03fe0676..d9a9d4607c 100644 --- a/src/nvim/po/Makefile +++ b/src/nvim/po/Makefile @@ -272,10 +272,10 @@ distclean: clean checkclean: rm -f *.ck -$(PACKAGE).pot: ../*.c ../if_perl.xs ../GvimExt/gvimext.cpp ../globals.h ../if_py_both.h +$(PACKAGE).pot: ../*.c ../globals.h cd ..; $(XGETTEXT) --default-domain=$(PACKAGE) \ --add-comments --keyword=_ --keyword=N_ \ - *.c if_perl.xs GvimExt/gvimext.cpp globals.h if_py_both.h + *.c globals.h mv -f ../$(PACKAGE).po $(PACKAGE).pot update-po: $(LANGUAGES) |