From 67a95527b567b03903863ebd52aa9299e330c73f Mon Sep 17 00:00:00 2001 From: Mate Kukri Date: Thu, 24 Jul 2025 18:06:29 +0100 Subject: [PATCH] configure: Generate tar-ustar tarball instead of tar-v7 Some of our paths are too long for tar-v7 at this point but tar-ustar is supported by essentially everything. So, let's use that. Signed-off-by: Mate Kukri Reviewed-by: Daniel Kiper --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 83e3ddf90..1036638a9 100644 --- a/configure.ac +++ b/configure.ac @@ -53,7 +53,7 @@ save_program_prefix="${program_prefix}" AC_CANONICAL_TARGET program_prefix="${save_program_prefix}" -AM_INIT_AUTOMAKE([1.11]) +AM_INIT_AUTOMAKE([1.11 tar-ustar]) AC_PREREQ(2.64) AC_CONFIG_SRCDIR([include/grub/dl.h]) AC_CONFIG_HEADERS([config-util.h])