diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2012-05-22 10:16:10 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2012-05-22 10:16:10 +0200 |
commit | fa64f7b255b6fce2949ccd13a01714a595020534 (patch) | |
tree | c36790770a73a4523871ca69c11ffa4e61cadabf /doc | |
parent | e27a1f01f90f5eae73f66f25b316ee8859f72105 (diff) | |
parent | 9c30a078c04fe1e86b0aea64cc9cb790e95a7c57 (diff) |
merged from david
Diffstat (limited to 'doc')
-rw-r--r-- | doc/makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/makefile b/doc/makefile index 4c0a431fd..d9542b438 100644 --- a/doc/makefile +++ b/doc/makefile @@ -83,14 +83,18 @@ ifdef PO4A doc: po4a update-po: - po4a --previous --no-backups --force --no-translations po4a.conf + po4a --previous --no-backups --force --no-translations \ + --package-name='$(PACKAGE)' --package-version='$(PACKAGE_VERSION)' \ + --msgid-bugs-address='$(PACKAGE_MAIL)' po4a.conf po4a: - po4a --previous --no-backups po4a.conf + po4a --previous --no-backups \ + --package-name='$(PACKAGE)' --package-version='$(PACKAGE_VERSION)' \ + --msgid-bugs-address='$(PACKAGE_MAIL)' po4a.conf endif stats: - for i in po/*.po; do echo -n "$$i: "; msgfmt --statistics $$i; done + for i in po/*.po; do echo -n "$$i: "; msgfmt --output-file=/dev/null --statistics $$i; done ifdef DOXYGEN DOXYGEN_SOURCES = $(shell find $(BASE)/apt-pkg -not -name .\\\#* -and \( -name \*.cc -or -name \*.h \) ) |