Use tar-ustar format for the dist archive
authorAlexandre Montplaisir <alexmonthy@efficios.com>
Fri, 17 Jul 2015 22:06:27 +0000 (18:06 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 22 Jul 2015 15:10:08 +0000 (11:10 -0400)
By default, Automake uses the old tar v7 format, which does not
support file paths longer than 99 characters. With the upcoming
Java agent refactoring, this becomes a problem.

This patch switches to the newer tar-ustar format, which supports
longer file paths in the archive.

Signed-off-by: Alexandre Montplaisir <alexmonthy@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
configure.ac

index 72e83ae7b52b2874b3c4ab23c1acc92b100d17e5..fe85e7bea3b5936d093140512b810a87d1df2f3d 100644 (file)
@@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR([config])
 AC_CANONICAL_TARGET
 AC_CANONICAL_HOST
 AC_CONFIG_MACRO_DIR([config])
-AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
+AM_INIT_AUTOMAKE([1.9 foreign dist-bzip2 no-dist-gzip tar-ustar])
 AM_MAINTAINER_MODE([enable])
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 AC_CONFIG_SRCDIR([include/lttng/tracepoint.h])
This page took 0.025477 seconds and 5 git commands to generate.