summaryrefslogtreecommitdiff
path: root/doc/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'doc/makefile')
-rw-r--r--doc/makefile10
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 \) )