From a995492f455bde4058bb83dea4dbc2f83bccd32e Mon Sep 17 00:00:00 2001 From: Alexandre Montplaisir Date: Fri, 17 Jul 2015 18:06:27 -0400 Subject: [PATCH] Use tar-ustar format for the dist archive 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 Signed-off-by: Mathieu Desnoyers --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 72e83ae7..fe85e7be 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) -- 2.34.1