build: create xz compressed by default

GNOME release tooling repacks the bz2 to a xz anyway. This makes it easier for
packagers to use tarballs created with "make dist" in place of distribution
tarballs.
This commit is contained in:
Lubomir Rintel 2015-08-13 17:15:30 +02:00
parent cad5406417
commit 60372f1090
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View file

@ -6,7 +6,6 @@
*.gcno
*.gcda
*.la
*.bz2
*.gir
*.typelib
*.stamp
@ -32,6 +31,8 @@ valgrind-*.log
test-*.log
test-*.trs
/NetworkManager-*.tar.*
/ABOUT-NLS
/COPYING
/INSTALL

View file

@ -17,7 +17,7 @@ AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AC_REQUIRE_AUX_FILE([tap-driver.sh])
AM_INIT_AUTOMAKE(1.12 tar-ustar no-dist-gzip dist-bzip2 -Wno-portability) dnl NB: Do not [quote] this parameter.
AM_INIT_AUTOMAKE(1.12 tar-ustar no-dist-gzip dist-xz -Wno-portability) dnl NB: Do not [quote] this parameter.
AM_MAINTAINER_MODE([enable])
AM_SILENT_RULES([yes])