RemoteLinux: Add "make install" step to pre-4.10 deploy configurations

... if applicable.

Fixes: QTCREATORBUG-22689
Change-Id: If3cec90bed4d84f8bf82eb0cc1d831143ee2e298
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Christian Kandeler
2019-07-16 13:56:40 +02:00
parent c8e656c506
commit 7b4cde9d65
4 changed files with 57 additions and 1 deletions

View File

@@ -223,7 +223,10 @@ DeployConfiguration *DeployConfigurationFactory::restore(Target *parent, const Q
if (!dc->fromMap(map)) {
delete dc;
dc = nullptr;
} else if (factory->postRestore()) {
factory->postRestore()(dc, map);
}
return dc;
}