diff options
author | Steve Langasek <vorlon@debian.org> | 2019-01-04 01:27:58 -0800 |
---|---|---|
committer | Steve Langasek <vorlon@debian.org> | 2019-01-08 22:12:51 -0800 |
commit | f3618c54f7f0c4fc26f29d0acd0256c7d13b53f2 (patch) | |
tree | e223f62d4d5f1c83a57829db1eceed4eefcc08d7 /debian/patches-applied/make_documentation_reproducible.patch | |
parent | 586fb048e9e5678dc717dc539dba916b99547750 (diff) | |
parent | c5a761b3f0216bc80685da0026ba7e1210b46004 (diff) | |
download | pam-f3618c54f7f0c4fc26f29d0acd0256c7d13b53f2.tar.gz pam-f3618c54f7f0c4fc26f29d0acd0256c7d13b53f2.tar.bz2 pam-f3618c54f7f0c4fc26f29d0acd0256c7d13b53f2.zip |
Acknowledge NMUs
Diffstat (limited to 'debian/patches-applied/make_documentation_reproducible.patch')
-rw-r--r-- | debian/patches-applied/make_documentation_reproducible.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/debian/patches-applied/make_documentation_reproducible.patch b/debian/patches-applied/make_documentation_reproducible.patch new file mode 100644 index 00000000..26f16503 --- /dev/null +++ b/debian/patches-applied/make_documentation_reproducible.patch @@ -0,0 +1,28 @@ +Description: Make documentation reproducible + Add LC_ALL=C to w3m to avoid changes in the output when build the + documentation with different locales. +Author: Juan Picca <jumapico@gmail.com> +Last-Update: 2015-07-11 + +--- pam.orig/configure ++++ pam/configure +@@ -15162,7 +15162,7 @@ fi + + + if test ! -z "$BROWSER"; then +- BROWSER="$BROWSER -T text/html -dump" ++ BROWSER="LC_ALL=C $BROWSER -T text/html -dump" + else + enable_docu=no + fi +--- pam.orig/configure.in ++++ pam/configure.in +@@ -554,7 +554,7 @@ JH_CHECK_XML_CATALOG([http://docbook.sou + + AC_PATH_PROG([BROWSER], [w3m]) + if test ! -z "$BROWSER"; then +- BROWSER="$BROWSER -T text/html -dump" ++ BROWSER="LC_ALL=C $BROWSER -T text/html -dump" + else + enable_docu=no + fi |