diff options
author | Dominique Martinet <asmadeus@codewreck.org> | 2020-12-01 16:17:30 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-12-21 07:57:08 +0300 |
commit | 436e980e2ed526832de822cbf13c317a458b78e1 (patch) | |
tree | 89319dd634852e99704ffb6195ad0063c808cc2e /Makefile | |
parent | c0ea806f874eb32894249b4a67c2f2452881b775 (diff) | |
download | linux-436e980e2ed526832de822cbf13c317a458b78e1.tar.xz |
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 <asmadeus@codewreck.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.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 |