diff options
author | David Hendricks <dhendricks@fb.com> | 2017-10-19 14:54:44 -0700 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2017-11-04 16:07:33 +0000 |
commit | 3a235498b460c708c0aee07a93fbcc68e43302ca (patch) | |
tree | 6a1bf4618325d5b7de225119e03356eb13ac7bc1 | |
parent | f0d1173fb4f540b4ac43aa30d6ff232ca74603b7 (diff) | |
download | flashrom-3a235498b460c708c0aee07a93fbcc68e43302ca.tar.gz flashrom-3a235498b460c708c0aee07a93fbcc68e43302ca.tar.bz2 flashrom-3a235498b460c708c0aee07a93fbcc68e43302ca.zip |
Use bzip2 when making a tarball
Tarballs on download.flashrom.org are generally packaged using bzip2, so
we may as well be internally consistent.
Change-Id: Ib9fb1ea6d5994cd0285ce8db9675640fae992773
Signed-off-by: David Hendricks <dhendricks@fb.com>
Reviewed-on: https://review.coreboot.org/22116
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-on: https://review.coreboot.org/22335
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1408,11 +1408,11 @@ export: _export @echo "Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/" tarball: _export - @tar -cz --format=ustar -f "$(EXPORTDIR)/flashrom-$(RELEASENAME).tar.gz" -C $(EXPORTDIR)/ \ + @tar -cj --format=ustar -f "$(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2" -C $(EXPORTDIR)/ \ $(TAROPTIONS) "flashrom-$(RELEASENAME)/" # Delete the exported directory again because it is most likely what's expected by the user. @rm -rf "$(EXPORTDIR)/flashrom-$(RELEASENAME)" - @echo Created "$(EXPORTDIR)/flashrom-$(RELEASENAME).tar.gz" + @echo Created "$(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2" libpayload: clean make CC="CC=i386-elf-gcc lpgcc" AR=i386-elf-ar RANLIB=i386-elf-ranlib |