From eb8b852ea6ea59e9bae98f4838bf297fab2c3fba Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Fri, 22 Mar 2024 02:06:11 +0100 Subject: [PATCH] fix macos build --- macos/bundle_utils.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/macos/bundle_utils.sh b/macos/bundle_utils.sh index a14a1dd0..2116798a 100644 --- a/macos/bundle_utils.sh +++ b/macos/bundle_utils.sh @@ -26,7 +26,8 @@ bundle_is_not_to_be_installed() { 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 + if [ "$1" = "AppleFSCompression" ]; then echo 1; fi + if [ "$1" = "libsdrplay_api.so.3.14" ]; then echo 1; fi } # ========================= FOR INTERNAL USE ONLY =========================