From 1f3f53f42171c43726873991bce9bbb3c2e88097 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 15 Aug 2009 11:12:19 +0000 Subject: [PATCH] (svn r17184) -Add: 'bundle_7z' to the bundling functions --- Makefile.bundle.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile.bundle.in b/Makefile.bundle.in index 0650163eba..1157843cb3 100644 --- a/Makefile.bundle.in +++ b/Makefile.bundle.in @@ -96,6 +96,11 @@ bundle_zip: bundle $(Q)mkdir -p "$(BUNDLES_DIR)" $(Q)cd "$(BUNDLE_DIR)" && zip -r $(shell if test -z "$(VERBOSE)"; then echo '-q'; fi) "$(BUNDLES_DIR)/$(BUNDLE_NAME).zip" . +bundle_7z: bundle + @echo '[BUNDLE] Creating $(BUNDLE_NAME).7z' + $(Q)mkdir -p "$(BUNDLES_DIR)" + $(Q)cd "$(BUNDLE_DIR)" && 7z a "$(BUNDLES_DIR)/$(BUNDLE_NAME).7z" . + bundle_gzip: bundle @echo '[BUNDLE] Creating $(BUNDLE_NAME).tar.gz' $(Q)mkdir -p "$(BUNDLES_DIR)/.gzip/$(BUNDLE_NAME)"