diff options
author | Russ Allbery <eagle@eyrie.org> | 2014-07-16 14:09:43 -0700 |
---|---|---|
committer | Russ Allbery <eagle@eyrie.org> | 2014-07-16 14:09:43 -0700 |
commit | 93fd3562fd82e90e2ad8faf02419c9c69df880aa (patch) | |
tree | 08a3ab4b3ec882f3313a466ad019224eff0e672c | |
parent | 743fec033f79ceb4cb241bcc040fb115ba868a6e (diff) |
Rebuild Autoconf and Automake files during the build
Change-Id: If4c22583a8031e5197a6d6999ca1e270c6dda0c8
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index fc8af44..2ccabb6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -27,6 +27,7 @@ wallet (1.1-1) UNRELEASED; urgency=medium * Document in the wallet-server package description that a DBD::* module and corresponding DateTime::Format::* module are required. (There isn't a way to fully represent the required dependency.) + * Rebuild Autoconf and Automake files during the build. * Define AUTOMATED_TESTING to enable some additional Perl tests. * Update standards version to 3.9.5 (no changes required). diff --git a/debian/control b/debian/control index 668ee95..feb2f37 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: wallet Section: net Priority: extra Maintainer: Russ Allbery <rra@debian.org> -Build-Depends: debhelper (>= 9), libauthen-sasl-perl, +Build-Depends: debhelper (>= 9), dh-autoreconf, libauthen-sasl-perl, libdatetime-format-sqlite-perl, libdbd-sqlite3-perl, libdbi-perl, libdbix-class-perl, libdatetime-perl, libdatetime-format-sqlite-perl, libkrb5-dev, libnet-duo-perl, libnet-ldap-perl, libremctl-dev, diff --git a/debian/rules b/debian/rules index cf90fab..0471054 100755 --- a/debian/rules +++ b/debian/rules @@ -7,7 +7,7 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow,+pie export AUTOMATED_TESTING = 1 %: - dh $@ --parallel + dh $@ --parallel --with autoreconf override_dh_auto_configure: dh_auto_configure --parallel -- --enable-reduced-depends |