Fixes an issue where the files copied by fixup_bundle.sh will not work with install_name_tool without proper permissions. Closes jp9000/obs-studio#618
@@ -36,6 +36,7 @@ for lib in $FOUNDLIBS; do
INTOOL_CALL+=(-change "$lib" "$LDEST/$libname")
cp "$lib" "$DEST/$libname"
+ chmod 644 "$DEST/$libname"
echo "Fixing up dependency: $libname"
done