diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2020-01-21 20:05:36 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2020-01-22 09:59:32 -0500 |
commit | 9069823300165d28fb1253e7d516d08c122aacdb (patch) | |
tree | 5fb204ed748183d15f79f38b28653074bb6360d1 | |
parent | configure.ac: place build artifacts in the "build-aux" directory. (diff) | |
download | eselect-php-9069823300165d28fb1253e7d516d08c122aacdb.tar.gz eselect-php-9069823300165d28fb1253e7d516d08c122aacdb.tar.bz2 eselect-php-9069823300165d28fb1253e7d516d08c122aacdb.zip |
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@gentoo.org>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
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 |