From 4ee677154fc1c11d494fc57f32fedbf786ea29cc Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Thu, 18 Nov 2021 12:06:43 +0100 Subject: [PATCH] Fixed bad libraries being included --- macos/bundle_utils.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/macos/bundle_utils.sh b/macos/bundle_utils.sh index 36606e56..41473f26 100644 --- a/macos/bundle_utils.sh +++ b/macos/bundle_utils.sh @@ -23,6 +23,10 @@ bundle_is_not_to_be_installed() { if [ "$1" = "AudioToolbox" ]; then echo 1; fi if [ "$1" = "AudioUnit" ]; then echo 1; fi if [ "$1" = "libobjc.A.dylib" ]; then echo 1; fi + if [ "$1" = "CFNetwork" ]; then echo 1; fi + if [ "$1" = "SystemConfiguration" ]; then echo 1; fi + if [ "$1" = "Security" ]; then echo 1; fi + if [ "$1" = "AppleFSCompression" ]; then echo 1; fi } # ========================= FOR INTERNAL USE ONLY =========================