From 671f3f324bc888ebd2a936222db85e03238363d5 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin <sergey.vfx@gmail.com> Date: Tue, 28 Aug 2018 18:21:18 +0200 Subject: [PATCH] Release checker: Ignore libcrypt being dynamic It is a part of libc, no way we can have blender runnign without libc installed at this point. --- check_blender_release/check_static_binaries.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/check_blender_release/check_static_binaries.py b/check_blender_release/check_static_binaries.py index 016d8f2..523e042 100644 --- a/check_blender_release/check_static_binaries.py +++ b/check_blender_release/check_static_binaries.py @@ -46,6 +46,9 @@ ALLOWED_LIBS = ( "librt.so", "libutil.so", + # Libraries which are oart of default install, + "libcrypt.so", + # X11 libraries we don't link statically, "libX11.so", "libXext.so", -- GitLab