aboutsummaryrefslogtreecommitdiff
path: root/debian/patches-applied/make_documentation_reproducible.patch
diff options
context:
space:
mode:
authorSteve Langasek <vorlon@debian.org>2021-12-06 11:11:31 -0800
committerSteve Langasek <vorlon@debian.org>2021-12-06 11:11:31 -0800
commita3d540fc9aab544f53eb4d2035454a12820bd02d (patch)
treec0ff911dfb5b5d5e719c747165c526681420cb79 /debian/patches-applied/make_documentation_reproducible.patch
parentea04efa24985743014da9dd22c0581cbaef82ede (diff)
parent17efd306e797a3fe46564896de31583c2c99f338 (diff)
downloadpam-a3d540fc9aab544f53eb4d2035454a12820bd02d.tar.gz
pam-a3d540fc9aab544f53eb4d2035454a12820bd02d.tar.bz2
pam-a3d540fc9aab544f53eb4d2035454a12820bd02d.zip
pam (1.4.0-11) unstable; urgency=medium
* Whitespace fixes in debconf templates. [ Sergio Durigan Junior ] * d/p/pam_env-allow-environment-files-without-EOL-at-EOF.patch: Allow /etc/environment files without EOL at EOF. In other words, allow files without a newline at the end. (LP: #1953201) [dgit import unpatched pam 1.4.0-11]
Diffstat (limited to 'debian/patches-applied/make_documentation_reproducible.patch')
-rw-r--r--debian/patches-applied/make_documentation_reproducible.patch19
1 files changed, 19 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..ed15df13
--- /dev/null
+++ b/debian/patches-applied/make_documentation_reproducible.patch
@@ -0,0 +1,19 @@
+Description: Make documentation reproducible
+ Add LC_ALL=C.UTF-8 to w3m to avoid changes in the output when build the
+ documentation with different locales.
+Author: Juan Picca <jumapico@gmail.com>, Steve Langasek <vorlon@debian.org>
+Last-Update: 2019-01-06
+
+Index: pam/configure.ac
+===================================================================
+--- pam.orig/configure.ac
++++ pam/configure.ac
+@@ -619,7 +619,7 @@
+
+ AC_PATH_PROG([BROWSER], [w3m])
+ if test -n "$BROWSER"; then
+- BROWSER="$BROWSER -T text/html -dump"
++ BROWSER="LC_ALL=C.UTF-8 $BROWSER -T text/html -dump"
+ else
+ AC_PATH_PROG([BROWSER], [elinks])
+ if test -n "$BROWSER"; then