From cd49b073e90cb34591193216ede3b11c01350c18 Mon Sep 17 00:00:00 2001 From: Eliseo Martínez Date: Mon, 26 May 2014 14:26:06 +0200 Subject: Fix localization: Fix build: Fix dangling references. Problem: Makefile references some files that don't exist anymore. Solution: Remove those references. --- src/nvim/po/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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) -- cgit