From 412ae11badba767be5a4168b753b4b8e6eeae218 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Sat, 12 Oct 2019 08:37:38 -0600 Subject: [PATCH] automake: use tar-ustar for longer filenames According to the automake manual it should be considered portable these days. https://www.gnu.org/software/automake/manual/html_node/List-of-Automake-options.html Required for the dist generation with Rust vendoring. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 57b0053eaf..ceb9cc2705 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_CONFIG_HEADERS([config.h]) AC_CONFIG_SRCDIR([src/suricata.c]) AC_CONFIG_MACRO_DIR(m4) - AM_INIT_AUTOMAKE + AM_INIT_AUTOMAKE([tar-ustar]) AC_LANG([C]) AC_PROG_CC_C99 -- 2.47.2