This is an automated email from the ASF dual-hosted git repository.

jpeach pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new 31ef8be  Used POSIX.1-2001/pax tar format for distribution tarballs.
31ef8be is described below

commit 31ef8be292f2f2f836558085e2f5f520d464208c
Author: James Peach <jpe...@apache.org>
AuthorDate: Wed Dec 5 13:19:31 2018 -0800

    Used POSIX.1-2001/pax tar format for distribution tarballs.
    
    The default tar format used in `make dist` is v7, which only supports
    paths of up to 99 bytes in length. This causes errors when building
    the CentOS RPM and adding files from 3rd party packages.
    
    Review: https://reviews.apache.org/r/69454/
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index c193adf..6778f11 100644
--- a/configure.ac
+++ b/configure.ac
@@ -43,7 +43,7 @@ AC_CONFIG_MACRO_DIR([m4])
 # Initialize automake.
 # -Wno-portability, since we require GNU Make for % patterns
 # Removal of -Werror due warnings introduced by automake 1.14.
-AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign])
+AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign tar-pax])
 AM_MAINTAINER_MODE([enable])
 
 # This is required for linking non-POSIX libs.

Reply via email to