diff --git a/src/macdeployqt/shared/shared.cpp b/src/macdeployqt/shared/shared.cpp
index 722f1be3afda2bf8eb55c591869662d6a5805b28..9996fd3bb0d394bdd1abdbd614027ffb8b310877 100644
--- a/src/macdeployqt/shared/shared.cpp
+++ b/src/macdeployqt/shared/shared.cpp
@@ -567,12 +567,6 @@ void deployPlugins(const ApplicationBundleInfo &appBundleInfo, const QString &pl
     // Cocoa print support
     pluginList.append("printsupport/libcocoaprintersupport.dylib");
 
-    // Accessibility
-    if (deploymentInfo.deployedFrameworks.contains(QStringLiteral("QtWidgets.framework")))
-        pluginList.append("accessible/libqtaccessiblewidgets.dylib");
-    if (deploymentInfo.deployedFrameworks.contains(QStringLiteral("QtQuick.framework")))
-        pluginList.append("accessible/libqtaccessiblequick.dylib");
-
     // All image formats (svg if QtSvg.framework is used)
     QStringList imagePlugins = QDir(pluginSourcePath +  QStringLiteral("/imageformats")).entryList(QStringList() << QStringLiteral("*.dylib"));
     foreach (const QString &plugin, imagePlugins) {