From 44e1b8dbbc5f4c41a142467acc7da6a277a09d40 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 29 Oct 2019 22:10:46 -0400 Subject: [PATCH] configure.ac: add "tar-ustar" to AM_INIT_AUTOMAKE. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The default tar format sucks, and ustar is my pick for the best alternative based on Michał's article, https://dev.gentoo.org/~mgorny/articles/portability-of-tar-features.html --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6aeafec..2970bc5 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.68]) AC_INIT([apply-default-acl], [0.4.2], [michael@orlitzky.com]) -AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz]) +AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz tar-ustar]) AC_CONFIG_FILES([Makefile src/Makefile]) AC_CONFIG_SRCDIR([src/apply-default-acl.c]) AC_CONFIG_MACRO_DIRS([m4]) -- 2.43.2