diff options
author | Dominique Martinet <asmadeus@codewreck.org> | 2020-12-01 14:17:30 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-01-12 20:18:16 +0100 |
commit | 3ca425885bb74e8b286308707c067aaabc6f4fce (patch) | |
tree | bc246b7b2ebe082f2937779d4300ad2eab10eb66 /Makefile | |
parent | e5383432d92c76054470bdc562fb26f237befc13 (diff) | |
download | linux-stable-3ca425885bb74e8b286308707c067aaabc6f4fce.tar.gz linux-stable-3ca425885bb74e8b286308707c067aaabc6f4fce.tar.bz2 linux-stable-3ca425885bb74e8b286308707c067aaabc6f4fce.zip |
kbuild: don't hardcode depmod path
commit 436e980e2ed526832de822cbf13c317a458b78e1 upstream.
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 <asmadeus@codewreck.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -450,7 +450,7 @@ LEX = flex YACC = bison AWK = awk INSTALLKERNEL := installkernel -DEPMOD = /sbin/depmod +DEPMOD = depmod PERL = perl PYTHON = python PYTHON3 = python3 |