File 0012-Pass-package-name-and-package-version-to-xgettext-us.patch of Package vdr-plugin-skinenigmang
From b9e9288aa0732003d0778e4b8e7677e53c5ffe15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= <ville.skytta@iki.fi> Date: Mon, 17 Dec 2012 12:20:34 +0100 Subject: [PATCH 12/19] Pass --package-name and --package-version to xgettext, use $LDFLAGS when linking. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5efa340..e8bc049 100644 --- a/Makefile +++ b/Makefile @@ -176,7 +176,7 @@ I18Npot = $(PODIR)/$(PLUGIN).pot msgfmt -c -o $@ $< $(I18Npot): $(wildcard *.c) - xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='<andreas@vdr-developer.org>' -o $@ $^ + xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=vdr-$(PLUGIN) --package-version=$(VERSION) --msgid-bugs-address='<andreas@vdr-developer.org>' -o $@ $^ %.po: $(I18Npot) msgmerge -U --no-wrap --no-location --backup=none --no-fuzzy-matching -q $@ $< @@ -192,7 +192,7 @@ i18n: $(I18Nmsgs) $(I18Npot) ### Targets: libvdr-$(PLUGIN).so: $(OBJS) - $(CXX) $(CXXFLAGS) -shared $(OBJS) $(LIBS) -o $@ + $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(LIBS) -o $@ ifndef SKINENIGMA_DEBUG @$(STRIP) $@ endif -- 2.20.1