From cb60c9517329cb07b56927bee61ff88efb0be3e8 Mon Sep 17 00:00:00 2001 From: Jason Yundt Date: Mon, 20 Sep 2021 20:45:04 -0400 Subject: [PATCH] Removed deprecated egrep "Direct invocation as either egrep or fgrep is deprecated..." -- The GNU Grep manual --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2550220..a885f5d 100644 --- a/Makefile +++ b/Makefile @@ -46,4 +46,4 @@ install: all BADFUNCS='[^_.>a-zA-Z0-9](str(n?cpy|n?cat|xfrm|n?dup|str|pbrk|tok|_)|stpn?cpy|a?sn?printf|byte_)' check: @echo Files with potentially dangerous functions. - @egrep $(BADFUNCS) $(SOURCES) || true + @grep -E $(BADFUNCS) $(SOURCES) || true