Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/eselect-php:master commit in: /
Date: Wed, 22 Jan 2020 15:00:25
Message-Id: 1579705172.9069823300165d28fb1253e7d516d08c122aacdb.mjo@gentoo
1 commit: 9069823300165d28fb1253e7d516d08c122aacdb
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 22 01:05:36 2020 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 22 14:59:32 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=90698233
7
8 configure.ac: use "ustar" format for the release tarballs.
9
10 The default tar format used by autotools is the historical v7 format,
11 which sucks. Let's use the improved "ustar" format instead. The
12 automake documentation has more information if this is the sort of
13 thing that interests you.
14
15 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
16
17 configure.ac | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20 diff --git a/configure.ac b/configure.ac
21 index 715e7e2..bebbeca 100644
22 --- a/configure.ac
23 +++ b/configure.ac
24 @@ -1,6 +1,6 @@
25 AC_INIT([eselect-php], [0.9.5])
26 AC_CONFIG_AUX_DIR([build-aux])
27 -AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz])
28 +AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz tar-ustar])
29
30 AC_PROG_LN_S
31 AC_PROG_MKDIR_P