From d18cd1bb1028ce48fe4a00136bfcdfc30e8a884f Mon Sep 17 00:00:00 2001 From: Giuliano Procida Date: Fri, 4 Dec 2020 14:49:19 +0000 Subject: [PATCH] ANDROID: kbuild: use grep -F instead of fgrep Otherwise we need to pull in an extra dependency. Bug: 174773617 Fixes: 6a2d28f7bab3 ("ANDROID: kbuild: speed up ksym_dep_filter") Change-Id: Ica1c433f17077be22f636d6c71db16cff3c7caa0 Signed-off-by: Giuliano Procida --- scripts/Kbuild.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 0f8fa52828f2..3f566c124a28 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include @@ -290,7 +290,7 @@ ksym_dep_filter = \ $(CPP) $(call flags_nodeps,a_flags) -D__KSYM_DEPS__ $< ;; \ boot*|build*|cpp_its_S|*cpp_lds_S|dtc|host*|vdso*) : ;; \ *) echo "Don't know how to preprocess $(1)" >&2; false ;; \ - esac | fgrep '=== __KSYM_' | tr ";" "\n" | sed -n 's/^.*=== __KSYM_\(.*\) ===.*$$/_\1/p' + esac | grep -F '=== __KSYM_' | tr ";" "\n" | sed -n 's/^.*=== __KSYM_\(.*\) ===.*$$/_\1/p' cmd_and_fixdep = \ $(echo-cmd) $(cmd_$(1)); \