From: Jason Ish Date: Sat, 12 Oct 2019 14:37:38 +0000 (-0600) Subject: automake: use tar-ustar for longer filenames X-Git-Tag: suricata-5.0.0~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4300%2Fhead;p=thirdparty%2Fsuricata.git 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. --- 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