From 77891230894ca81f6440c7c9e32c96a561cd25e8 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 27 Jan 2019 22:16:48 +0000 Subject: [PATCH] Revert breakage https://github.com/Subsurface-divelog/subsurface/pull/1953#issuecomment-457954945 --- tools/linuxdeployqt/shared.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tools/linuxdeployqt/shared.cpp b/tools/linuxdeployqt/shared.cpp index 52e0451..911b08a 100644 --- a/tools/linuxdeployqt/shared.cpp +++ b/tools/linuxdeployqt/shared.cpp @@ -1230,8 +1230,12 @@ void deployPlugins(const AppDirInfo &appDirInfo, const QString &pluginSourcePath // Always bundle iconengines,imageformats // https://github.com/probonopd/linuxdeployqt/issues/82 // https://github.com/probonopd/linuxdeployqt/issues/325 - pluginList.append("iconengines"); - pluginList.append("imageformats"); + // FIXME + // The following does NOT work; + // findDependencyInfo: "ldd: /usr/local/Qt-5.9.3/plugins/iconengines: not regular file" + // pluginList.append("iconengines"); + // pluginList.append("imageformats"); + // TODO: Need to traverse the directories and add each contained plugin individually LogDebug() << "deploymentInfo.deployedLibraries before attempting to bundle required plugins:" << deploymentInfo.deployedLibraries;