From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D3E65138351 for ; Wed, 22 Jan 2020 15:00:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF60EE08FA; Wed, 22 Jan 2020 15:00:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9F5A7E08FA for ; Wed, 22 Jan 2020 15:00:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E77B334E33E for ; Wed, 22 Jan 2020 15:00:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C42A9E5 for ; Wed, 22 Jan 2020 15:00:07 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1579705172.9069823300165d28fb1253e7d516d08c122aacdb.mjo@gentoo> Subject: [gentoo-commits] proj/eselect-php:master commit in: / X-VCS-Repository: proj/eselect-php X-VCS-Files: configure.ac X-VCS-Directories: / X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 9069823300165d28fb1253e7d516d08c122aacdb X-VCS-Branch: master Date: Wed, 22 Jan 2020 15:00:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9505157d-e33f-49c5-92d7-6f6b6357cd67 X-Archives-Hash: 07dfafb9ffdfb00e77cc07952ab51dae commit: 9069823300165d28fb1253e7d516d08c122aacdb Author: Michael Orlitzky gentoo org> AuthorDate: Wed Jan 22 01:05:36 2020 +0000 Commit: Michael Orlitzky gentoo 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 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