From e502d66a3b2653abf24dcf66aeb505670d3cc0c0 Mon Sep 17 00:00:00 2001 From: Gonzalo Exequiel Pedone Date: Mon, 22 Feb 2021 21:05:05 -0300 Subject: [PATCH] Set INSTALL_PATH 2. --- ports/deploy/deploy_mac.py | 1 - ports/deploy/deploy_posix.py | 1 - ports/deploy/deploy_posix_windows.py | 1 - ports/deploy/deploy_windows.py | 1 - 4 files changed, 4 deletions(-) diff --git a/ports/deploy/deploy_mac.py b/ports/deploy/deploy_mac.py index d372abb..57494d9 100644 --- a/ports/deploy/deploy_mac.py +++ b/ports/deploy/deploy_mac.py @@ -38,7 +38,6 @@ class Deploy(DTDeployBase.DeployBase, DTQt5.Qt5Tools): super().__init__() rootDir = os.path.normpath(os.path.join(os.path.dirname(os.path.realpath(__file__)), '../..')) self.setRootDir(rootDir) - self.installDir = os.path.join(self.buildDir, 'ports/deploy/temp_priv') self.pkgsDir = os.path.join(self.buildDir, 'ports/deploy/packages_auto', self.targetSystem) self.detectQtIFW() self.detectQtIFWVersion() diff --git a/ports/deploy/deploy_posix.py b/ports/deploy/deploy_posix.py index 0c28700..5d6fa8d 100644 --- a/ports/deploy/deploy_posix.py +++ b/ports/deploy/deploy_posix.py @@ -38,7 +38,6 @@ class Deploy(DTDeployBase.DeployBase, DTQt5.Qt5Tools): super().__init__() rootDir = os.path.normpath(os.path.join(os.path.dirname(os.path.realpath(__file__)), '../..')) self.setRootDir(rootDir) - self.installDir = os.path.join(self.buildDir, 'ports/deploy/temp_priv') self.pkgsDir = os.path.join(self.buildDir, 'ports/deploy/packages_auto', sys.platform) self.detectQtIFW() self.detectQtIFWVersion() diff --git a/ports/deploy/deploy_posix_windows.py b/ports/deploy/deploy_posix_windows.py index 8e6c65d..40ae888 100644 --- a/ports/deploy/deploy_posix_windows.py +++ b/ports/deploy/deploy_posix_windows.py @@ -37,7 +37,6 @@ class Deploy(DTDeployBase.DeployBase, DTQt5.Qt5Tools): rootDir = os.path.normpath(os.path.join(os.path.dirname(os.path.realpath(__file__)), '../..')) self.setRootDir(rootDir) self.targetSystem = 'posix_windows' - self.installDir = os.path.join(self.buildDir, 'ports/deploy/temp_priv') self.pkgsDir = os.path.join(self.buildDir, 'ports/deploy/packages_auto/windows') self.detectQtIFW() self.detectQtIFWVersion() diff --git a/ports/deploy/deploy_windows.py b/ports/deploy/deploy_windows.py index 96905f4..029c7f8 100644 --- a/ports/deploy/deploy_windows.py +++ b/ports/deploy/deploy_windows.py @@ -37,7 +37,6 @@ class Deploy(DTDeployBase.DeployBase, DTQt5.Qt5Tools): super().__init__() rootDir = os.path.normpath(os.path.join(os.path.dirname(os.path.realpath(__file__)), '../..')) self.setRootDir(rootDir) - self.installDir = os.path.join(self.buildDir, 'ports/deploy/temp_priv') self.pkgsDir = os.path.join(self.buildDir, 'ports/deploy/packages_auto/windows') self.detectQtIFW() self.detectQtIFWVersion()