From 07d347a0c378caa66349ec790d97af9ecbe7dfb9 Mon Sep 17 00:00:00 2001 From: Dominik Holland Date: Wed, 24 Jan 2024 10:16:01 +0100 Subject: [PATCH] RemoteLinux: Allow the deploy steps to be used in all deploy configurations Instead of limiting them to a specific deployment configuration, they are now limited to the RemoteLinux device. Change-Id: I4a8eebd055985b63815ac6fbb3b9e04c297bd1ab Reviewed-by: hjk --- src/plugins/remotelinux/remotelinuxdeploysupport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/remotelinux/remotelinuxdeploysupport.cpp b/src/plugins/remotelinux/remotelinuxdeploysupport.cpp index c3a11b6f453..94a6aba141e 100644 --- a/src/plugins/remotelinux/remotelinuxdeploysupport.cpp +++ b/src/plugins/remotelinux/remotelinuxdeploysupport.cpp @@ -26,8 +26,8 @@ class RemoteLinuxDeployStepFactory : public Factory public: RemoteLinuxDeployStepFactory() { - Factory::setSupportedConfiguration(RemoteLinux::Constants::DeployToGenericLinux); Factory::setSupportedStepList(ProjectExplorer::Constants::BUILDSTEPS_DEPLOY); + Factory::setSupportedDeviceType(RemoteLinux::Constants::GenericLinuxOsType); } };