Fixed bad libraries being included

This commit is contained in:
AlexandreRouma 2021-11-18 12:06:43 +01:00
parent 098b78dcd1
commit 4ee677154f

View File

@ -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 =========================