diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-08-04 13:47:03 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-08-07 21:30:36 +0900 |
commit | 0004438a165b18d4a611745f12e328e65f46c8f2 (patch) | |
tree | 44abf61f2364aa4c5ca5316307a2655bfa3866a0 | |
parent | 63e31a67f12855129740943a4f826f05ddd0a2d0 (diff) | |
download | linux-0004438a165b18d4a611745f12e328e65f46c8f2.tar.gz linux-0004438a165b18d4a611745f12e328e65f46c8f2.tar.bz2 linux-0004438a165b18d4a611745f12e328e65f46c8f2.zip |
um: clean up archheaders recipe
Now that '%asm-generic' is added to no-dot-config-targets,
'make asm-generic' does not include the kernel configuration.
You can simply do 'make asm-generic' in the recursed top Makefile
without bothering syncconfig.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Tested-by: Randy Dunlap <rdunlap@infradead.org>
Acked-by: Richard Weinberger <richard@nod.at>
-rw-r--r-- | arch/um/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/um/Makefile b/arch/um/Makefile index 613fc3c79de0..306ee51c189f 100644 --- a/arch/um/Makefile +++ b/arch/um/Makefile @@ -116,13 +116,7 @@ endef KBUILD_KCONFIG := $(HOST_DIR)/um/Kconfig archheaders: - $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.asm-generic \ - kbuild-file=$(HOST_DIR)/include/asm/Kbuild \ - obj=$(HOST_DIR)/include/generated/asm - $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.asm-generic \ - kbuild-file=$(HOST_DIR)/include/uapi/asm/Kbuild \ - obj=$(HOST_DIR)/include/generated/uapi/asm - $(Q)$(MAKE) -f $(srctree)/Makefile ARCH=$(HEADER_ARCH) archheaders + $(Q)$(MAKE) -f $(srctree)/Makefile ARCH=$(HEADER_ARCH) asm-generic archheaders archprepare: include/generated/user_constants.h |