From e55345223c86e382d53427a93efe413066ca9a0f Mon Sep 17 00:00:00 2001 From: Alessio Morale Date: Sun, 19 Jan 2014 18:12:44 +0100 Subject: [PATCH] OP-1179 fix linux packages for missing .so that causes blank about box --- ground/openpilotgcs/copydata.pro | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/ground/openpilotgcs/copydata.pro b/ground/openpilotgcs/copydata.pro index e922acf2e..a877da775 100644 --- a/ground/openpilotgcs/copydata.pro +++ b/ground/openpilotgcs/copydata.pro @@ -84,15 +84,6 @@ GCS_LIBRARY_PATH data_copy.commands += $(COPY_DIR) $$targetPath(\"$$[QT_INSTALL_QML]/$$dir\") $$targetPath(\"$$GCS_QT_QML_PATH/$$dir\") $$addNewline() } - # Remove the few unwanted libs after whole dir copy - QT_QUICK2_DELS = QtQuick/Controls/libqtquickcontrolsplugin.so \ - QtQuick/Controls/Private/libqtquickcontrolsprivateplugin.so \ - QtQuick/Dialogs/libdialogplugin.so - - for(delfile, QT_QUICK2_DELS) { - data_copy.commands += $(DEL_FILE) $$targetPath(\"$$GCS_QT_QML_PATH/$${delfile}\") $$addNewline() - } - # Remaining QtQuick plugin libs QT_QUICK2_DLLS = QtQuick.2/libqtquick2plugin.so \ QtQuick.2/plugins.qmltypes \ @@ -210,22 +201,6 @@ GCS_LIBRARY_PATH data_copy.commands += $(COPY_DIR) $$targetPath(\"$$[QT_INSTALL_QML]/$$dir\") $$targetPath(\"$$GCS_APP_PATH/$$dir\") $$addNewline() } - # Remove the few unwanted DDLs after whole dir copy - QT_QUICK2_DELS = qtquick/controls/qtquickcontrolsplugin \ - qtquick/controls/private/qtquickcontrolsprivateplugin \ - qtquick/dialogs/dialogplugin - - CONFIG(debug, debug|release) { - for(delfile, QT_QUICK2_DELS) { - data_copy.commands += $(DEL_FILE) $$targetPath(\"$$GCS_APP_PATH/$${delfile}.dll\") $$addNewline() - } - } - CONFIG(release, debug|release) { - for(delfile, QT_QUICK2_DELS) { - data_copy.commands += $(DEL_FILE) $$targetPath(\"$$GCS_APP_PATH/$${delfile}d.dll\") $$addNewline() - } - } - # Remaining QtQuick plugin DLLs QT_QUICK2_DLLS = QtQuick.2/qtquick2plugin$${DS}.dll \ QtQuick.2/plugins.qmltypes \