diff options
author | Bill Nottingham <notting@redhat.com> | 2001-03-13 20:30:15 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-03-13 20:30:15 +0000 |
commit | ea32c5c1c6b84a02d8238e4ee38c42e9fcd1e7e7 (patch) | |
tree | acee1a8baab4c700347d8ab0739165697efffa43 /po/Makefile | |
parent | 0a9d40fb007d993b85a8da3791cd18035400b8dd (diff) | |
download | initscripts-ea32c5c1c6b84a02d8238e4ee38c42e9fcd1e7e7.tar initscripts-ea32c5c1c6b84a02d8238e4ee38c42e9fcd1e7e7.tar.gz initscripts-ea32c5c1c6b84a02d8238e4ee38c42e9fcd1e7e7.tar.bz2 initscripts-ea32c5c1c6b84a02d8238e4ee38c42e9fcd1e7e7.tar.xz initscripts-ea32c5c1c6b84a02d8238e4ee38c42e9fcd1e7e7.zip |
update initscripts.pot with current tree, run make refresh-po
Diffstat (limited to 'po/Makefile')
-rw-r--r-- | po/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/po/Makefile b/po/Makefile index f8fbf25f..ff6927ff 100644 --- a/po/Makefile +++ b/po/Makefile @@ -10,12 +10,12 @@ NLSPACKAGE = initscripts CATALOGS = $(shell ls *.po) FMTCATALOGS = $(patsubst %.po,%.mo,$(CATALOGS)) -POTFILES = ../rc.d/init.d/* ../rc.d/rc.* ../sysconfig/network-scripts/* +POTFILES = /etc/rc.d/init.d/* /etc/rc.d/rc.* /etc/sysconfig/network-scripts/* all: $(NLSPACKAGE).pot $(FMTCATALOGS) $(NLSPACKAGE).pot: $(POTFILES) - @echo "Please don't do that." + @echo "Please don't run 'make initscripts.pot unless you have a *FULL*, current install." #./xgettext_sh.py $(POTFILES) > $(NLSPACKAGE).po #if cmp -s $(NLSPACKAGE).po $(NLSPACKAGE).pot; then \ @@ -52,6 +52,12 @@ refresh-po: Makefile fi \ done +report: + @for cat in $(CATALOGS); do \ + echo -n "$$cat: "; \ + msgfmt -v --statistics -o /dev/null $$cat; \ + done + clean: rm -f *mo $(NLSPACKAGE).pot *.pyc |