summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/makeinstallstep.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/remotelinux/makeinstallstep.cpp')
-rw-r--r--src/plugins/remotelinux/makeinstallstep.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/remotelinux/makeinstallstep.cpp b/src/plugins/remotelinux/makeinstallstep.cpp
index 0b1fa704ad..c9d3578b79 100644
--- a/src/plugins/remotelinux/makeinstallstep.cpp
+++ b/src/plugins/remotelinux/makeinstallstep.cpp
@@ -118,13 +118,13 @@ bool MakeInstallStep::init()
}
QDir rootDir(rootDirPath);
if (cleanInstallRoot() && !rootDir.removeRecursively()) {
- emit addTask(Task(Task::Error, tr("The install root '%1' could not be cleaned.")
+ emit addTask(Task(Task::Error, tr("The install root \"%1\" could not be cleaned.")
.arg(installRoot().toUserOutput()),
FilePath(), -1, Constants::TASK_CATEGORY_BUILDSYSTEM));
return false;
}
if (!rootDir.exists() && !QDir::root().mkpath(rootDirPath)) {
- emit addTask(Task(Task::Error, tr("The install root '%1' could not be created.")
+ emit addTask(Task(Task::Error, tr("The install root \"%1\" could not be created.")
.arg(installRoot().toUserOutput()),
FilePath(), -1, Constants::TASK_CATEGORY_BUILDSYSTEM));
return false;