From 9759a1c84b5639e3a15bc972f19e79e1b773abf1 Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Wed, 7 Sep 2022 14:45:20 +0200 Subject: [PATCH] d/pcscd.init: use "grep -E" instead of deprecated "egrep" Closes: #1019322 --- debian/changelog | 7 +++++++ debian/pcscd.init | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 053f439..8d70f11 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pcsc-lite (1.9.8-2) UNRELEASED; urgency=medium + + * d/pcscd.init: use "grep -E" instead of deprecated "egrep" + Closes: #1019322 + + -- Ludovic Rousseau Wed, 07 Sep 2022 14:43:40 +0200 + pcsc-lite (1.9.8-1) unstable; urgency=medium * new upstream release diff --git a/debian/pcscd.init b/debian/pcscd.init index b9b8f32..58ff62a 100644 --- a/debian/pcscd.init +++ b/debian/pcscd.init @@ -50,7 +50,7 @@ ENV_FILE="none" [ -r /etc/environment ] && ENV_FILE="/etc/environment" [ -r /etc/default/locale ] && ENV_FILE="/etc/default/locale" -value=$(egrep "^[^#]*LANG=" $ENV_FILE | tail -n1 | cut -d= -f2) +value=$(grep -E "^[^#]*LANG=" $ENV_FILE | tail -n1 | cut -d= -f2) eval LANG=$value #