diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-09-20 19:12:52 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-10-26 13:15:38 +0200 |
commit | ab3fda4d989adff5726d454c34bb5c5bcb6a9f34 (patch) | |
tree | 9ffda47bdf9e72485c4f05b1fa37f1eb654952aa /scripts | |
parent | c3eac1e56ebbeed69e3070add240320d54157520 (diff) | |
download | linux-stable-ab3fda4d989adff5726d454c34bb5c5bcb6a9f34.tar.gz linux-stable-ab3fda4d989adff5726d454c34bb5c5bcb6a9f34.tar.bz2 linux-stable-ab3fda4d989adff5726d454c34bb5c5bcb6a9f34.zip |
selinux: use "grep -E" instead of "egrep"
commit c969bb8dbaf2f3628927eae73e7c579a74cf1b6e upstream.
The latest version of grep claims that egrep is now obsolete so the build
now contains warnings that look like:
egrep: warning: egrep is obsolescent; using grep -E
fix this by using "grep -E" instead.
Cc: Paul Moore <paul@paul-moore.com>
Cc: Stephen Smalley <stephen.smalley.work@gmail.com>
Cc: Eric Paris <eparis@parisplace.org>
Cc: selinux@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
[PM: tweak to remove vdso reference, cleanup subj line]
Signed-off-by: Paul Moore <paul@paul-moore.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/selinux/install_policy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/selinux/install_policy.sh b/scripts/selinux/install_policy.sh index f6a0ce71015f..537004b26d83 100755 --- a/scripts/selinux/install_policy.sh +++ b/scripts/selinux/install_policy.sh @@ -56,7 +56,7 @@ fi cd /etc/selinux/dummy/contexts/files $SF file_contexts / -mounts=`cat /proc/$$/mounts | egrep "ext2|ext3|xfs|jfs|ext4|ext4dev|gfs2" | awk '{ print $2 '}` +mounts=`cat /proc/$$/mounts | grep -E "ext2|ext3|xfs|jfs|ext4|ext4dev|gfs2" | awk '{ print $2 '}` $SF file_contexts $mounts |