use xz instead of bz2 in make tar

This commit is contained in:
leitner 2015-04-09 18:28:03 +00:00
parent 12caae78b2
commit 42eb4c9830
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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