This is an automated email from the git hooks/post-receive script.

guillem pushed a commit to branch main
in repository dpkg.

View the commit online:
https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=d08166d00d7161632ce6a6bd050842b1b4878308

commit d08166d00d7161632ce6a6bd050842b1b4878308
Author: Ville Skyttä <ville.sky...@iki.fi>
AuthorDate: Sat Nov 13 10:33:51 2021 +0200

    dselect: use `grep -E` instead of `egrep`
    
    `egrep` has been deprecated in GNU grep since 2007, and in current post
    3.7 Git it has been made to emit obsolescence warnings:
    
https://git.savannah.gnu.org/cgit/grep.git/commit/?id=a9515624709865d480e3142fd959bccd1c9372d1
    
    Closes: #999600
    Signed-off-by: Guillem Jover <guil...@debian.org>
---
 dselect/methods/multicd/setup.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dselect/methods/multicd/setup.sh b/dselect/methods/multicd/setup.sh
index 57613f8fb..381fc8619 100755
--- a/dselect/methods/multicd/setup.sh
+++ b/dselect/methods/multicd/setup.sh
@@ -159,7 +159,7 @@ if [ $option = multi_cd ]; then
     response=""
     while [ -z "$response" ]; do
       echo 'Several CD-ROMs (or other ISO9660 filesystems) are mounted:'
-      egrep 'type iso9660 \([^)]*\)$' <$tp.m | nl
+      grep -E 'type iso9660 \([^)]*\)$' <$tp.m | nl
       echo -n "Is it any of these ?  Type a number, or 'n' for none.  "
       read response
       response="$(echo \"$response\" | sed -e 's/[     ]*$//')"

-- 
Dpkg.Org's dpkg

Reply via email to