From a87aa0ddc02605887ecd181a42813d9a7293a1e2 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Fri, 5 Jan 2024 01:27:27 -0800 Subject: Eliminate use of egrep and fgrep and the warnings they now give --- kernel/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kernel/Makefile') diff --git a/kernel/Makefile b/kernel/Makefile index 6dfb3eff8..819173f76 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -4,5 +4,5 @@ clean: check: perl -I. modules.pl check > /dev/null @echo "unlisted drivers: " - @for i in $$(zcat /usr/share/ldetect-lst/pcitable.gz|cut -f 2 -d \" |egrep -v '^#|ADSL:|Bad:|Card:|H[cs]f:|ISDN:|LT:'|sort|uniq|less);do fgrep -q $$i list_modules.pm|| echo -n "$$i ";done + @for i in $$(zcat /usr/share/ldetect-lst/pcitable.gz|cut -f 2 -d \" | grep -E -v '^#|ADSL:|Bad:|Card:|H[cs]f:|ISDN:|LT:'|sort|uniq|less);do grep -F -q $$i list_modules.pm|| echo -n "$$i ";done @echo -- cgit v1.2.1