diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-02-06 00:27:06 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-02-06 00:27:06 +0000 |
commit | 2adab34c207a25b874b8af4a2e075bdad1385cd1 (patch) | |
tree | 5da65240a7509f1b0993a5c32f07022a1da72616 | |
parent | 3f567857065945fc21f370e168661bd1d9cef1da (diff) | |
download | master-31e0f0ae-2adab34c207a25b874b8af4a2e075bdad1385cd1.tar.gz master-31e0f0ae-2adab34c207a25b874b8af4a2e075bdad1385cd1.tar.bz2 master-31e0f0ae-2adab34c207a25b874b8af4a2e075bdad1385cd1.zip |
imagebuilder: use FreeBSD compatible tar invocation
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 44288
-rw-r--r-- | target/imagebuilder/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/imagebuilder/Makefile b/target/imagebuilder/Makefile index 82fdab40d8..ecb8ac7cf4 100644 --- a/target/imagebuilder/Makefile +++ b/target/imagebuilder/Makefile @@ -58,7 +58,7 @@ $(BIN_DIR)/$(IB_NAME).tar.bz2: clean find $(STAGING_DIR_HOST)/bin -maxdepth 1 -type f -perm -u=x \ | $(XARGS) $(SCRIPT_DIR)/bundle-libraries.sh $(PKG_BUILD_DIR)/staging_dir/host/bin $(MAKE) -C $(PKG_BUILD_DIR) package_index - $(TAR) c -C $(BUILD_DIR) $(IB_NAME) | bzip2 -c > $@ + $(TAR) -cf - -C $(BUILD_DIR) $(IB_NAME) | bzip2 -c > $@ download: prepare: |