[openwrt/openwrt] sdk: keep the linux package in the same subdir as in the main build system

LEDE Commits lede-commits at lists.infradead.org
Sun Oct 25 21:36:12 EDT 2020


blocktrron pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/a4c1c169c391ac0b11e4c3e895b282f07585347c

commit a4c1c169c391ac0b11e4c3e895b282f07585347c
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Mon Oct 19 11:28:29 2020 +0200

    sdk: keep the linux package in the same subdir as in the main build system
    
    Fixes: 953435795d17 ("build: always build package/kernel/linux")
    Signed-off-by: Felix Fietkau <nbd at nbd.name>
---
 target/sdk/Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/target/sdk/Makefile b/target/sdk/Makefile
index 022a791ebf..4a9dc8be41 100644
--- a/target/sdk/Makefile
+++ b/target/sdk/Makefile
@@ -129,11 +129,14 @@ $(BIN_DIR)/$(SDK_NAME).tar.xz: clean
 		./files/include/prepare.mk \
 		./files/README.SDK \
 		$(SDK_BUILD_DIR)/
+	mkdir -p $(SDK_BUILD_DIR)/package/kernel
 	$(CP) \
 		$(TOPDIR)/package/Makefile \
 		$(TOPDIR)/package/libs/toolchain \
-		$(TOPDIR)/package/kernel/linux \
 		$(SDK_BUILD_DIR)/package/
+	$(CP) \
+		$(TOPDIR)/package/kernel/linux \
+		$(SDK_BUILD_DIR)/package/kernel/
 
 	-rm -rf $(SDK_BUILD_DIR)/$(STAGING_SUBDIR_HOST)/.prereq-build
 



More information about the lede-commits mailing list