From 901aa884ca82351d946ae0f6c9fb3f222f780a20 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Tue, 2 Apr 2024 21:21:01 -0400 Subject: [PATCH 1/1] Remove dist-xz Automake option. There is very little point in forcing dist-xz in the Automake options, since it merely changes the formats produced by plain 'make dist'. This just causes unnecessary failures when running 'make dist' on systems without an xz program (gzip is much more widely available). One can still explicitly run 'make dist-xz' when cutting a distribution if this compression format is desired. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 3cd249f..297469d 100644 --- a/configure.ac +++ b/configure.ac @@ -10,7 +10,7 @@ AC_PREREQ([2.68]) AC_INIT([cdecl99], [1.2a], [nbowler@draconx.ca]) AC_CONFIG_HEADERS([config.h]) -AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects dist-xz]) +AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects]) AM_SILENT_RULES([yes]) DX_AUTOMAKE_COMPAT -- 2.43.2