From 1613be371753310568c4915215dc4af32a4c5618 Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Wed, 3 Feb 2010 10:38:50 +0000 Subject: [PATCH] Fix "update-reader.conf depends on collation order, but does not override LC_ALL" by using unset LC_ALL (Closes: #567764) --- debian/changelog | 5 ++++- debian/update-reader.conf | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 76800a8..4ece32f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,8 +2,11 @@ pcsc-lite (1.5.5-3) unstable; urgency=low * debian/update-reader.conf: store the generated configuration file in /var/lib/pcscd instead of /etc. This should really close #565896. + * Fix "update-reader.conf depends on collation order, but does not + override LC_ALL" by using unset LC_ALL (Closes: + #567764) - -- Ludovic Rousseau Wed, 03 Feb 2010 11:33:58 +0100 + -- Ludovic Rousseau Wed, 03 Feb 2010 11:38:16 +0100 pcsc-lite (1.5.5-2) unstable; urgency=medium diff --git a/debian/update-reader.conf b/debian/update-reader.conf index 4b9ca70..54763ad 100644 --- a/debian/update-reader.conf +++ b/debian/update-reader.conf @@ -36,6 +36,9 @@ set -e LC_COLLATE=C export LC_COLLATE +# Avoid side effects with LC_ALL. See #567764 +unset LC_ALL + if [ 0 -ne "`id -u`" ]; then echo "You have to be root to run $0" exit 2