From 8cf9939c69f40846e87a00e381b9473d057f997f Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Tue, 16 Oct 2018 20:36:53 +0100 Subject: [PATCH] configure.ac: enable xz tarballs instead of gzip by default `xz` compresses twice as good as `gzip` on `re2c` sources: ``` $ ls -lh *1.1.1* 4,8M re2c-1.1.1.tar.gz 2,5M re2c-1.1.1.tar.xz ``` Switch `make dist` to `xz by default. `gzip` is still available via `make dist-gzip`. Reported-by: rofl0r Bug: https://github.com/skvadrik/re2c/issues/221 Signed-off-by: Sergei Trofimovich --- re2c/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/re2c/configure.ac b/re2c/configure.ac index eaac4086..e1ea7cf9 100644 --- a/re2c/configure.ac +++ b/re2c/configure.ac @@ -1,5 +1,5 @@ AC_INIT([re2c],[1.1.1],[re2c-general@lists.sourceforge.net]) -AM_INIT_AUTOMAKE([foreign subdir-objects]) +AM_INIT_AUTOMAKE([foreign subdir-objects dist-xz no-dist-gzip]) AM_SILENT_RULES([yes]) -- 2.50.1