diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2011-05-21 12:40:42 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2011-05-21 12:40:42 +0200 |
commit | 299335153644eb24276724cd2e9f4234ee77cdca (patch) | |
tree | 5455fb2edf79d78a4788d9b9487bcd67260265ff /PLUGINS/src/hello/Makefile | |
parent | 85af76ab639c7771dcadf05ad8ae3dccca760e09 (diff) | |
download | vdr-299335153644eb24276724cd2e9f4234ee77cdca.tar.gz vdr-299335153644eb24276724cd2e9f4234ee77cdca.tar.bz2 |
Now sorting the source file names in the call to xgettext
Diffstat (limited to 'PLUGINS/src/hello/Makefile')
-rw-r--r-- | PLUGINS/src/hello/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PLUGINS/src/hello/Makefile b/PLUGINS/src/hello/Makefile index e9f06038..b59d08ae 100644 --- a/PLUGINS/src/hello/Makefile +++ b/PLUGINS/src/hello/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 2.6 2011/02/27 10:04:58 kls Exp $ +# $Id: Makefile 2.7 2011/05/21 12:25:41 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -83,7 +83,7 @@ I18Npot = $(PODIR)/$(PLUGIN).pot msgfmt -c -o $@ $< $(I18Npot): $(wildcard *.c) - xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=VDR --package-version=$(VDRVERSION) --msgid-bugs-address='<vdr-bugs@tvdr.de>' -o $@ $^ + xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=VDR --package-version=$(VDRVERSION) --msgid-bugs-address='<vdr-bugs@tvdr.de>' -o $@ `ls $^` %.po: $(I18Npot) msgmerge -U --no-wrap --no-location --backup=none -q $@ $< |