diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-08-02 06:59:42 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-08-02 06:59:42 +0000 |
commit | 3fdd4043ae763fdc524735a3643b8b94c1aba41a (patch) | |
tree | 9883b0e1d1ec81caf3a454479869123cf2fcd5bd /po/Makefile | |
parent | 86485e38723bcc17d8aae88ce80db7b87cac67a0 (diff) | |
download | anaconda-3fdd4043ae763fdc524735a3643b8b94c1aba41a.tar.gz anaconda-3fdd4043ae763fdc524735a3643b8b94c1aba41a.tar.xz anaconda-3fdd4043ae763fdc524735a3643b8b94c1aba41a.zip |
don't lose entries from zonetab which are relevant such as 'Pacific Time' when 'Pacific Time - north Yukon' exists
Diffstat (limited to 'po/Makefile')
-rw-r--r-- | po/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/po/Makefile b/po/Makefile index 6d4b645a3..6706ab77a 100644 --- a/po/Makefile +++ b/po/Makefile @@ -26,7 +26,7 @@ $(NLSPACKAGE).pot: $(POTFILES) $(NONPOTFILES) ../anaconda --keyword=_ --keyword=N_ $(POTFILES) xgettext --default-domain=$(NLSPACKAGE) \ --keyword=_ --keyword=N_ --language=Python ../anaconda - cat /usr/share/zoneinfo/zone.tab | cut -f4 | grep "^[a-zA-Z]" | sort | uniq -u | while read line; do echo -e "\n#. generated from zone.tab\nmsgid \"$$line\"\nmsgstr \"\""; done >> $(NLSPACKAGE).po + cat /usr/share/zoneinfo/zone.tab | cut -f4 | grep "^[a-zA-Z]" | sort -u | while read line; do echo -e "\n#. generated from zone.tab\nmsgid \"$$line\"\nmsgstr \"\""; done >> $(NLSPACKAGE).po cat ../lang-table | cut -f1 | while read line; do echo -e "\n#. generated from lang-table\nmsgid \"$$line\"\nmsgstr \"\""; done >> $(NLSPACKAGE).po if cmp -s $(NLSPACKAGE).po $(NLSPACKAGE).pot; then \ rm -f $(NLSPACKAGE).po; \ |