commit: 9069823300165d28fb1253e7d516d08c122aacdb Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org> AuthorDate: Wed Jan 22 01:05:36 2020 +0000 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org> CommitDate: Wed Jan 22 14:59:32 2020 +0000 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=90698233
configure.ac: use "ustar" format for the release tarballs. The default tar format used by autotools is the historical v7 format, which sucks. Let's use the improved "ustar" format instead. The automake documentation has more information if this is the sort of thing that interests you. Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org> configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 715e7e2..bebbeca 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_INIT([eselect-php], [0.9.5]) AC_CONFIG_AUX_DIR([build-aux]) -AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz]) +AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz tar-ustar]) AC_PROG_LN_S AC_PROG_MKDIR_P
