diff options
author | Kaleb S. KEITHLEY <kkeithle@redhat.com> | 2015-04-26 20:38:30 -0400 |
---|---|---|
committer | Niels de Vos <ndevos@redhat.com> | 2015-04-27 12:52:37 -0700 |
commit | f692757193bc9464a49b545931f201ba832c24a3 (patch) | |
tree | d70a1aac493d3fdb37af4b4bae7f4d323a87c9d6 /configure.ac | |
parent | 464d0d15328bd54173b367953ba9ee58d697afe5 (diff) |
build: configure: automake defaults to max filename length=99 chars
automake's default rule for making tar files invokes tar with options
to use Unix V7 tar file format, which has a maximum FQ pathname length
of 99 characters. Some of the new tests in .../tests/bugs/... have names
that are longer than 99 chars. These files are dropped from the dist
tarfile.
automake can be configured to use a newer (POSIX 2001) tar format that
does not have limits on the length of file names.
Change-Id: I2f3f239e410c66aa13b1257dc734691741b7c667
BUG: 1215486
Signed-off-by: Kaleb S. KEITHLEY <kkeithle@redhat.com>
Reviewed-on: http://review.gluster.org/10392
Tested-by: NetBSD Build System
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Humble Devassy Chirammal <humble.devassy@gmail.com>
Reviewed-by: Justin Clift <justin@gluster.org>
Reviewed-by: Niels de Vos <ndevos@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c16695e735f..eb72eec09fe 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,7 @@ AC_INIT([glusterfs], AC_SUBST([PACKAGE_RELEASE], [m4_esyscmd([build-aux/pkg-version --release])]) -AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE(tar-pax) # Removes warnings when using automake 1.14 around (...but option 'subdir-objects' is disabled ) #but libglusterfs fails to build with contrib (Then are not set up that way?) |