aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Guthrie <colin@mageia.org>2012-04-14 15:57:29 +0000
committerColin Guthrie <colin@mageia.org>2012-04-14 15:57:29 +0000
commitbe9e04302257b398465eb30b886c4d213f5ac47f (patch)
tree675104860f33138b461e9a0f5a0c8c1ed3179070
parent428526dcc3abb1fce3f02864697abe034f9e9e84 (diff)
downloadbootsplash-be9e04302257b398465eb30b886c4d213f5ac47f.tar
bootsplash-be9e04302257b398465eb30b886c4d213f5ac47f.tar.gz
bootsplash-be9e04302257b398465eb30b886c4d213f5ac47f.tar.bz2
bootsplash-be9e04302257b398465eb30b886c4d213f5ac47f.tar.xz
bootsplash-be9e04302257b398465eb30b886c4d213f5ac47f.zip
Switch dist to xz
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 172b038..a3a83bb 100644
--- a/Makefile
+++ b/Makefile
@@ -27,16 +27,16 @@ dist:
echo "Unknown SCM (not SVN nor GIT)";\
exit 1; \
fi;
- $(info $(NAME)-$(VERSION).tar.bz2 is ready)
+ $(info $(NAME)-$(VERSION).tar.xz is ready)
dist-svn:
rm -rf $(NAME)-$(VERSION)
svn export -q -rBASE . $(NAME)-$(VERSION)
- tar jcf ../$(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION)
+ tar Jcf ../$(NAME)-$(VERSION).tar.xz $(NAME)-$(VERSION)
rm -rf $(NAME)-$(VERSION)
dist-git:
- @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | bzip2 >../$(NAME)-$(VERSION).tar.bz2;
+ @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | xz >../$(NAME)-$(VERSION).tar.xz;
clean:
@for i in $(SUBDIRS);do make -C $$i clean;done