From: Micha Lenk Date: Tue, 9 Aug 2016 10:59:06 +0000 (+0200) Subject: target/toolchain: Fix toolchain packaging without package build X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=81dfbfb069c3c8f3e5499f55b02b1f320208707d;hp=9209f4304b0dd5e5a5337abd69a6dbf6a9cb782e target/toolchain: Fix toolchain packaging without package build If the toolchain is packaged for later use as external toolchain, the resulting tarball is created in $BIN_DIR. But without building all packages first that directory isn't created, hence 'make target/toolchain/compile' fails when trying to create the toolchain tarball with error "Cannot open: No such file or directory". To fix that the $BIN_DIR is created before using it. Signed-off-by: Micha Lenk --- diff --git a/target/toolchain/Makefile b/target/toolchain/Makefile index 2f5186c152..2fcda3e25f 100644 --- a/target/toolchain/Makefile +++ b/target/toolchain/Makefile @@ -58,6 +58,7 @@ $(BIN_DIR)/$(TOOLCHAIN_NAME).tar.bz2: clean find $(TOOLCHAIN_BUILD_DIR) -name .git | $(XARGS) rm -rf find $(TOOLCHAIN_BUILD_DIR) -name .svn | $(XARGS) rm -rf find $(TOOLCHAIN_BUILD_DIR) -name CVS | $(XARGS) rm -rf + mkdir -p $(BIN_DIR) (cd $(BUILD_DIR); \ tar cfj $@ $(TOOLCHAIN_NAME); \ )