From: Dominique Martinet Date: Tue, 1 Dec 2020 13:17:30 +0000 (+0100) Subject: kbuild: don't hardcode depmod path X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=436e980e2ed5;p=linux.git kbuild: don't hardcode depmod path depmod is not guaranteed to be in /sbin, just let make look for it in the path like all the other invoked programs Signed-off-by: Dominique Martinet Signed-off-by: Masahiro Yamada --- diff --git a/Makefile b/Makefile index 9ec53d947628d..f01c247eba583 100644 --- a/Makefile +++ b/Makefile @@ -450,7 +450,7 @@ LEX = flex YACC = bison AWK = awk INSTALLKERNEL := installkernel -DEPMOD = /sbin/depmod +DEPMOD = depmod PERL = perl PYTHON = python PYTHON3 = python3