RemoteLinux: Switch default value for "clean install root"

... in MakeInstallStep.

Fixes: QTCREATORBUG-27724
Change-Id: I5999ace2a9653c103b9b974bc9e58bdfdfa4f780
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Christian Kandeler
2022-07-06 15:01:31 +02:00
parent 777ae87779
commit fae3ba1a1b

View File

@@ -107,7 +107,7 @@ MakeInstallStep::MakeInstallStep(BuildStepList *parent, Id id) : MakeStep(parent
cleanInstallRootAspect->setSettingsKey(CleanInstallRootAspectId);
cleanInstallRootAspect->setLabel(tr("Clean install root first:"),
BoolAspect::LabelPlacement::InExtraLabel);
cleanInstallRootAspect->setValue(false);
cleanInstallRootAspect->setValue(true);
const auto commandLineAspect = addAspect<StringAspect>();
commandLineAspect->setId(FullCommandLineAspectId);