Commit 79320bcbf0d860a7cb32d6d6d464d776b9dd76ce
1 parent
a074335a37
Exists in
master
and in
6 other branches
um: Use $(srctree) not $(KBUILD_SRC)
$(KBUILD_SRC) is not defined without O=, use $(srctree). Reported-and-tested-by: Richard Weinberger <richard@nod.at> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
arch/um/Makefile
... | ... | @@ -98,7 +98,7 @@ |
98 | 98 | KBUILD_KCONFIG := $(HOST_DIR)/um/Kconfig |
99 | 99 | |
100 | 100 | archheaders: |
101 | - $(Q)$(MAKE) -C '$(KBUILD_SRC)' KBUILD_SRC= \ | |
101 | + $(Q)$(MAKE) -C '$(srctree)' KBUILD_SRC= \ | |
102 | 102 | ARCH=$(SUBARCH) O='$(objtree)' archheaders |
103 | 103 | |
104 | 104 | archprepare: include/generated/user_constants.h |