diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-05-31 00:09:03 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-05-31 00:09:03 -0400 |
commit | 41fce8bd09b10935315ab67a46ea3970ed9f925d (patch) | |
tree | c7f392be33f160c94a770dd4b087fcbb34027755 /po/Makefile | |
parent | 4769ae77fc6c8dacea6476addb015c8797848cdd (diff) | |
download | glibc-41fce8bd09b10935315ab67a46ea3970ed9f925d.tar glibc-41fce8bd09b10935315ab67a46ea3970ed9f925d.tar.gz glibc-41fce8bd09b10935315ab67a46ea3970ed9f925d.tar.bz2 glibc-41fce8bd09b10935315ab67a46ea3970ed9f925d.zip |
Also translation messages in .ksh files
Diffstat (limited to 'po/Makefile')
-rw-r--r-- | po/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/po/Makefile b/po/Makefile index 4ac253e3d1..4d2f406525 100644 --- a/po/Makefile +++ b/po/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996-1999,2001,2002,2006,2007,2009 +# Copyright (C) 1996-1999,2001,2002,2006,2007,2009,2011 # Free Software Foundation, Inc. # This file is part of the GNU C Library. @@ -62,18 +62,24 @@ libc.pot: header.pot libc.pot.files sed -e 's/VERSION/$(version)/' \ -e "s/DATE/`date +'%Y-%m-%d %H:%M'$$disp`/" \ $< > $@.new + egrep -v '\.ksh$$' $(word 2,$^) > $(objdir)/tmp-libc.pot-files cd ..; $(XGETTEXT) --keyword=_ --keyword=N_ \ --add-comments=TRANS --flag=error:3:c-format \ --flag=f_print:2:c-format \ --sort-by-file --omit-header -E -n -d - \ - -f po/$(word 2,$^) >> po/$@.new + -f $(objdir)/tmp-libc.pot-files >> po/$@.new + egrep '\.ksh$$' $(word 2,$^) > $(objdir)/tmp-libc.pot-files + cd ..; $(XGETTEXT) --add-comments=TRANS --language=Shell \ + --sort-by-file --omit-header -E -n -o po/$@.new -j \ + -f $(objdir)/tmp-libc.pot-files po/$@.new + rm $(objdir)/tmp-libc.pot-files mv -f $@.new $@ ifeq ($(with-cvs),yes) test ! -d CVS || cvs $(CVSOPTS) ci -m'Regenerated from source files' $@ endif po-sed-cmd = \ - '/\/tst-/d;$(foreach S,[ch] cxx sh bash,$(subst .,\.,/.$S\(.in\)*$$/p;))' + '/\/tst-/d;$(foreach S,[ch] cxx sh ksh bash,$(subst .,\.,/.$S\(.in\)*$$/p;))' # Omit tst-* files, and get only files with the given suffixes. libc.pot.files: FORCE |