1 Star 0 Fork 14

liyunfei/dkms

forked from src-openEuler/dkms 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
change-deprecated-egrep-for-grep-E.patch 1.64 KB
一键复制 编辑 原始数据 按行查看 历史
wk333 提交于 2023-03-27 10:42 . Change deprecated egrep for grep -E
From 25077200289dfdc37c0e86ec4c86e4932137088e Mon Sep 17 00:00:00 2001
From: Morten Linderud <morten@linderud.pw>
Date: Sat, 10 Sep 2022 15:01:15 +0200
Subject: [PATCH] dkms: Change deprecated egrep for grep -E
New versions of grep is going to issue a warning when `egrep` is used.
egrep: warning: egrep is obsolescent; using grep -E
This changes the invocation to `grep -E`
Signed-off-by: Morten Linderud <morten@linderud.pw>
---
dkms | 2 +-
dkms.8 | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dkms b/dkms
index be00118..c4b9a26 100644
--- a/dkms
+++ b/dkms
@@ -1900,7 +1900,7 @@ remove_module()
done
# Delete the $module_version part of the tree if no other $module_version/$kernel_version dirs exist
- if ! find $dkms_tree/$module/$module_version/* -maxdepth 0 -type d 2>/dev/null | egrep -qv "(build|tarball|driver_disk|rpm|deb|source)$"; then
+ if ! find $dkms_tree/$module/$module_version/* -maxdepth 0 -type d 2>/dev/null | grep -Eqv "(build|tarball|driver_disk|rpm|deb|source)$"; then
echo $""
echo $"------------------------------"
echo $"Deleting module version: $module_version"
diff --git a/dkms.8 b/dkms.8
index 75b30de..86df63b 100644
--- a/dkms.8
+++ b/dkms.8
@@ -609,7 +609,7 @@ should be put into
.B MAKE[0].
Other entries in the MAKE array will only be used if their corresponding entry in
.B MAKE_MATCH[#]
-matches, as a regular expression (using egrep), the kernel that the module is being built for.
+matches, as a regular expression (using grep -E), the kernel that the module is being built for.
Note that if no value is placed in
.B MAKE_MATCH[#]
for any
--
2.27.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liyunfei33/dkms.git
git@gitee.com:liyunfei33/dkms.git
liyunfei33
dkms
dkms
master

搜索帮助