kbuild: fix make dir/
kbuild added an extra '/' after the directory - resulting in all files being rebuild in a subdirectory. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
2
Makefile
2
Makefile
@@ -1284,7 +1284,7 @@ kernelversion:
|
|||||||
# build-dir => directory in kernel source tree to use
|
# build-dir => directory in kernel source tree to use
|
||||||
|
|
||||||
ifeq ($(KBUILD_EXTMOD),)
|
ifeq ($(KBUILD_EXTMOD),)
|
||||||
build-dir = $(dir $@)
|
build-dir = $(patsubst %/,%,$(dir $@))
|
||||||
target-dir = $(dir $@)
|
target-dir = $(dir $@)
|
||||||
else
|
else
|
||||||
zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@)))
|
zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@)))
|
||||||
|
Reference in New Issue
Block a user