From 04bec4d014a32f5127d2aada2dd5e6085c83f160 Mon Sep 17 00:00:00 2001 From: AlexPeshkoff Date: Wed, 24 Apr 2024 20:31:40 +0300 Subject: [PATCH] Fixed #8037: remove directory entries from debug symbols tarball --- builds/install/arch-specific/linux/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builds/install/arch-specific/linux/Makefile.in b/builds/install/arch-specific/linux/Makefile.in index 6e9c58ede7..8d4ba58f98 100644 --- a/builds/install/arch-specific/linux/Makefile.in +++ b/builds/install/arch-specific/linux/Makefile.in @@ -87,7 +87,7 @@ $(TarFile) : buildTarDir debugfile: $(DebugFile) $(DebugFile) : buildImageDir - (cd $(GEN_ROOT)/$(DebugDir); $(TAR) -czf ../$(DebugFile) .) + (cd $(GEN_ROOT)/$(DebugDir); $(TAR) -czf ../$(DebugFile) `find . -not -type d`) buildRoot: (cd $(GEN_ROOT); ./install/makeInstallImage.sh)