projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5fefdce
)
lib/vdso: use "grep -E" instead of "egrep"
author
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 20 Sep 2022 17:06:33 +0000
(19:06 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Fri, 2 Dec 2022 16:41:08 +0000
(17:41 +0100)
commit
8ac3b5cd3e0521d92f9755e90d140382fc292510
upstream.
The latest version of grep claims the egrep is now obsolete so the build
now contains warnings that look like:
egrep: warning: egrep is obsolescent; using grep -E
fix this up by moving the vdso Makefile to use "grep -E" instead.
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Vincenzo Frascino <vincenzo.frascino@arm.com>
Link:
https://lore.kernel.org/r/20220920170633.3133829-1-gregkh@linuxfoundation.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
lib/vdso/Makefile
patch
|
blob
|
history
diff --git
a/lib/vdso/Makefile
b/lib/vdso/Makefile
index c415a685d61bb16ae92d196fb035ca7e3f397c6d..e814061d6aa010e90ab11a75e8a8171dc4cf8755 100644
(file)
--- a/
lib/vdso/Makefile
+++ b/
lib/vdso/Makefile
@@
-17,6
+17,6
@@
$(error ARCH_REL_TYPE_ABS is not set)
endif
quiet_cmd_vdso_check = VDSOCHK $@
- cmd_vdso_check = if $(OBJDUMP) -R $@ |
egrep
-h "$(ARCH_REL_TYPE_ABS)"; \
+ cmd_vdso_check = if $(OBJDUMP) -R $@ |
grep -E
-h "$(ARCH_REL_TYPE_ABS)"; \
then (echo >&2 "$@: dynamic relocations are not supported"; \
rm -f $@; /bin/false); fi