Fix "update-reader.conf depends on collation order, but does not

override LC_ALL" by using unset LC_ALL (Closes:
#567764)
This commit is contained in:
Ludovic Rousseau 2010-02-03 10:38:50 +00:00
parent 19fc8785a3
commit 1613be3717
2 changed files with 7 additions and 1 deletions

5
debian/changelog vendored
View File

@ -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 <rousseau@debian.org> Wed, 03 Feb 2010 11:33:58 +0100
-- Ludovic Rousseau <rousseau@debian.org> Wed, 03 Feb 2010 11:38:16 +0100
pcsc-lite (1.5.5-2) unstable; urgency=medium

View File

@ -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