summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorDan Fandrich <danf@mageia.org>2024-01-05 01:27:27 -0800
committerDan Fandrich <danf@mageia.org>2024-01-05 01:27:27 -0800
commita87aa0ddc02605887ecd181a42813d9a7293a1e2 (patch)
tree123f1361579c4965b8e02e2c802622a315a7b61a /kernel
parent0fa88b29b084ef372bd580cd94132abfd820c035 (diff)
downloaddrakx-a87aa0ddc02605887ecd181a42813d9a7293a1e2.tar
drakx-a87aa0ddc02605887ecd181a42813d9a7293a1e2.tar.gz
drakx-a87aa0ddc02605887ecd181a42813d9a7293a1e2.tar.bz2
drakx-a87aa0ddc02605887ecd181a42813d9a7293a1e2.tar.xz
drakx-a87aa0ddc02605887ecd181a42813d9a7293a1e2.zip
Eliminate use of egrep and fgrep and the warnings they now give
Diffstat (limited to 'kernel')
-rw-r--r--kernel/Makefile2
1 files changed, 1 insertions, 1 deletions
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