diff options
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | man/Makefile.am | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9ebbdfc68..ded48fd16 100644 --- a/configure.ac +++ b/configure.ac @@ -4,6 +4,7 @@ m4_pattern_forbid([^_?DPKG_]) AC_PREREQ(2.60) AC_INIT([dpkg], m4_esyscmd([./get-version]), [debian-dpkg@lists.debian.org]) +AC_SUBST([PACKAGE_COPYRIGHT_HOLDER], ['Dpkg Developers']) AC_CONFIG_SRCDIR([lib/dpkg/dpkg.h]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) diff --git a/debian/changelog b/debian/changelog index c42d5d8a7..c4eecb030 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ dpkg (1.17.16) UNRELEASED; urgency=low - * + * Set the copyright holder in the po4a calls for man pages. -- Guillem Jover <guillem@debian.org> Mon, 06 Oct 2014 03:37:15 +0200 diff --git a/man/Makefile.am b/man/Makefile.am index 99bbd5458..86034afe1 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -75,6 +75,7 @@ PO4A_V_0 = @echo " PO4A $@"; PO4A_OPTS = --previous --srcdir $(srcdir) --destdir $(CURDIR) --no-backups \ --package-name dpkg-man --package-version $(PACKAGE_VERSION) \ + --copyright-holder "$(PACKAGE_COPYRIGHT_HOLDER)" \ --msgid-bugs-address $(PACKAGE_BUGREPORT) all-local: all-local-@USE_PO4A@ |