From 42eb4c98305d0ca58c232bde025df9956c0ddfd3 Mon Sep 17 00:00:00 2001 From: leitner Date: Thu, 9 Apr 2015 18:28:03 +0000 Subject: [PATCH] use xz instead of bz2 in make tar --- GNUmakefile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 8bae18a..73cd05a 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -199,7 +199,7 @@ CURNAME=$(notdir $(shell pwd)) tar: Makefile clean rename rm -f dep libdep - cd ..; tar cvvf $(VERSION).tar.bz2 --use=bzip2 --exclude CVS $(VERSION) + cd ..; tar cvvf $(VERSION).tar.xz --use=xz --exclude CVS $(VERSION) rename: if test $(CURNAME) != $(VERSION); then cd .. && mv $(CURNAME) $(VERSION); fi diff --git a/Makefile b/Makefile index 25943c5..2143ce0 100644 --- a/Makefile +++ b/Makefile @@ -760,7 +760,7 @@ CURNAME=libowfat-0.30 tar: clean rename rm -f dep libdep - cd ..; tar cvvf $(VERSION).tar.bz2 --use=bzip2 --exclude CVS $(VERSION) + cd ..; tar cvvf $(VERSION).tar.xz --use=xz --exclude CVS $(VERSION) rename: if test $(CURNAME) != $(VERSION); then cd .. && mv $(CURNAME) $(VERSION); fi