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 /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 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Makefile 2.17 2011/04/17 13:35:53 kls Exp $ +# $Id: Makefile 2.18 2011/05/21 12:21:40 kls Exp $ .DELETE_ON_ERROR: @@ -115,7 +115,7 @@ I18Npot = $(PODIR)/vdr.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 $@ $< |