diff options
author | Steve Langasek <vorlon@debian.org> | 2013-02-11 19:16:19 -0800 |
---|---|---|
committer | Steve Langasek <vorlon@debian.org> | 2019-01-08 22:11:49 -0800 |
commit | 0a97b658dd8b4a8b780d632775497cb7e24ccd2c (patch) | |
tree | ac7bbfdee9712c05000e04f3f08a2588c4b7c446 /debian | |
parent | a97979c943a1bbee4f92a9537edb68634fd92c01 (diff) | |
download | pam-0a97b658dd8b4a8b780d632775497cb7e24ccd2c.tar.gz pam-0a97b658dd8b4a8b780d632775497cb7e24ccd2c.tar.bz2 pam-0a97b658dd8b4a8b780d632775497cb7e24ccd2c.zip |
debian/rules: never regenerate manpages at build time; this may cause
build skew that breaks the world in a multiarch context. LP: #1095887.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | debian/rules | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 87ce4a37..677b2880 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ pam (1.1.3-8) UNRELEASED; urgency=low * Confirm NMU for bug #611136; thanks to Michael Gilbert. * Adjust the pam_env documentation to match the module behavior resulting from the previous security upload. Closes: #693995. + * debian/rules: never regenerate manpages at build time; this may cause + build skew that breaks the world in a multiarch context. LP: #1095887. -- Steve Langasek <vorlon@debian.org> Mon, 11 Feb 2013 19:00:19 -0800 diff --git a/debian/rules b/debian/rules index e1a566d2..248c23ce 100755 --- a/debian/rules +++ b/debian/rules @@ -20,7 +20,8 @@ dl = $(d)/local override_dh_auto_configure: dh_auto_configure -- --enable-static --enable-shared \ --libdir=/lib/$(DEB_HOST_MULTIARCH) \ - --enable-isadir=/lib/security --disable-audit + --enable-isadir=/lib/security --disable-audit \ + --disable-regenerate-docu # make sure the SAG, MWG, ADG are readable with a browser. override_dh_compress: |