aboutsummaryrefslogtreecommitdiff
path: root/debian/patches-applied/make_documentation_reproducible.patch
diff options
context:
space:
mode:
authorSteve Langasek <vorlon@debian.org>2019-01-04 01:27:58 -0800
committerSteve Langasek <vorlon@debian.org>2019-01-08 22:12:51 -0800
commitf3618c54f7f0c4fc26f29d0acd0256c7d13b53f2 (patch)
treee223f62d4d5f1c83a57829db1eceed4eefcc08d7 /debian/patches-applied/make_documentation_reproducible.patch
parent586fb048e9e5678dc717dc539dba916b99547750 (diff)
parentc5a761b3f0216bc80685da0026ba7e1210b46004 (diff)
downloadpam-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.patch28
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