Skip to content
Snippets Groups Projects
Commit 2adab34c authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

imagebuilder: use FreeBSD compatible tar invocation


Signed-off-by: default avatarJo-Philipp Wich <jow@openwrt.org>

SVN-Revision: 44288
parent 3f567857
No related branches found
No related tags found
No related merge requests found
...@@ -58,7 +58,7 @@ $(BIN_DIR)/$(IB_NAME).tar.bz2: clean ...@@ -58,7 +58,7 @@ $(BIN_DIR)/$(IB_NAME).tar.bz2: clean
find $(STAGING_DIR_HOST)/bin -maxdepth 1 -type f -perm -u=x \ 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 | $(XARGS) $(SCRIPT_DIR)/bundle-libraries.sh $(PKG_BUILD_DIR)/staging_dir/host/bin
$(MAKE) -C $(PKG_BUILD_DIR) package_index $(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: download:
prepare: prepare:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment