diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-26 14:27:55 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-26 14:27:55 +0000 |
commit | 0ce2cdf9e1eef7a91912bebcbb4580c8451b0f8c (patch) | |
tree | 840f0588dd64fba9074417d8aefdae38f551b799 | |
parent | e28254af5950ef7ec29dc924731f0215a8e78263 (diff) | |
download | drakx-backup-do-not-use-0ce2cdf9e1eef7a91912bebcbb4580c8451b0f8c.tar drakx-backup-do-not-use-0ce2cdf9e1eef7a91912bebcbb4580c8451b0f8c.tar.gz drakx-backup-do-not-use-0ce2cdf9e1eef7a91912bebcbb4580c8451b0f8c.tar.bz2 drakx-backup-do-not-use-0ce2cdf9e1eef7a91912bebcbb4580c8451b0f8c.tar.xz drakx-backup-do-not-use-0ce2cdf9e1eef7a91912bebcbb4580c8451b0f8c.zip |
fetch directly the latest drakx-help.xml
-rw-r--r-- | perl-install/share/po/.cvsignore | 2 | ||||
-rw-r--r-- | perl-install/share/po/Makefile | 7 |
2 files changed, 6 insertions, 3 deletions
diff --git a/perl-install/share/po/.cvsignore b/perl-install/share/po/.cvsignore index f3dcd7811..3cfa69f96 100644 --- a/perl-install/share/po/.cvsignore +++ b/perl-install/share/po/.cvsignore @@ -1,3 +1,5 @@ .*.sw? *.mo *~ +drakx-help.xml + diff --git a/perl-install/share/po/Makefile b/perl-install/share/po/Makefile index dd65c8ccb..3746ac5fe 100644 --- a/perl-install/share/po/Makefile +++ b/perl-install/share/po/Makefile @@ -12,8 +12,9 @@ LOCALEDIR=$(DATADIR)/locale all: $(MOFILES) -help: /tmp/drakx-help.xml - ./help_xml2pm.pl $^ > ../../help.pm +help: + wget -q -O drakx-help.xml "http://www.mandrakelinux.com/cgi-bin/cvsweb.cgi/~checkout~/doc/manual/literal/drakx/en/drakx-help.xml?rev=1.1&content-type=text/plain" + ./help_xml2pm.pl drakx-help.xml > ../../help.pm %.mo: %.po msgfmt -o $@ $< @@ -39,7 +40,7 @@ install: done clean: - rm -f empty.po tmp.* messages tmp.pot *.mo $(POFILES:%=%t) $(PMSCFILES) + rm -f drakx-help.xml empty.po tmp.* messages tmp.pot *.mo $(POFILES:%=%t) $(PMSCFILES) check: @grep -F '$$' DrakX.pot && { echo "bad translation strings (contains \$$) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"; exit 1; } ||: |