diff options
author | Phil Sutter <phil@nwl.cc> | 2021-11-01 12:35:38 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2021-11-01 15:16:19 +0100 |
commit | e48e15bff425241ec65f5f892cfd1d2c17a19d67 (patch) | |
tree | 0ce13510364096f891c7777204a2220404aa226f /toolchain | |
parent | 2b3bd34a82c6238a9612cf45b8b8730ca0c3c2be (diff) |
mk: Introduce KERNEL_MAKE variable
This combines the typical kernel make call idiom into a single variable
reference. A side-effect is that parallel make is enabled (via added
'-j' flag) in many cases, but that shouldn't cause harm.
Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/linux-headers/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/toolchain/linux-headers/Makefile b/toolchain/linux-headers/Makefile index 6ed1a0d55..b2aed50ed 100644 --- a/toolchain/linux-headers/Makefile +++ b/toolchain/linux-headers/Makefile @@ -44,9 +44,7 @@ endif touch $@ $(WRKBUILD)/.configured: $(TOOLCHAIN_BUILD_DIR)/w-$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE)/linux-$(KERNEL_FILE_VER)/.patched - $(KERNEL_MAKE_ENV) $(MAKE) -C "${LINUX_DIR}" $(KERNEL_MAKE_OPTS) \ - INSTALL_HDR_PATH=$(STAGING_TARGET_DIR)/usr \ - headers_install + ${KERNEL_MAKE} INSTALL_HDR_PATH=$(STAGING_TARGET_DIR)/usr headers_install ifeq ($(ADK_TARGET_ARCH_CRIS),y) ifeq ($(ADK_TARGET_CPU_ARCH),crisv32) cd $(STAGING_TARGET_DIR)/usr/include && ln -sf arch-v32/arch arch |