diff options
author | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-09-12 10:28:40 +0200 |
---|---|---|
committer | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-09-12 10:37:32 +0200 |
commit | 01c986b87a2cf371aa632293170ef125d656ad72 (patch) | |
tree | f825b4b4a2ec82306ed897a6b2a3535ac2c2df6e | |
parent | e8a5721178b9387fded2bc0b618a9f175572e9ba (diff) |
Autotools builds: Create only .tar.xz tarballs
This is what Meson does. Cairo does it when built with Autotools.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 808ac9b..cf93a84 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_CONFIG_AUX_DIR([build]) AC_CONFIG_MACRO_DIR([build]) AC_CONFIG_HEADERS([build/config.h cairommconfig.h]) -AM_INIT_AUTOMAKE([1.10 -Wno-portability no-define nostdinc tar-pax]) +AM_INIT_AUTOMAKE([1.10 -Wno-portability no-dist-gzip dist-xz no-define nostdinc tar-pax]) # Support silent build rules. # Disable by either passing --disable-silent-rules to configure or passing V=1 to make. m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |