aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/cpp/GenericGCC.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-11-01 17:17:47 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2013-11-04 12:30:18 +0100
commitf842cde6077e217811ae5e1c36ae0274581bbe74 (patch)
tree44ad1b2fe79350462f84226f7bd003cbb384ba2e /share/qbs/modules/cpp/GenericGCC.qbs
parent643e08d84bc7b28e9f2f1fe1b666aeb0f2121d34 (diff)
Add missing description for "ln" commands.
These missing descriptions are the cause for weird empty lines appearing in Qt Creator's compile output. Change-Id: I67af9adf816496595d5fd3d8bdb372e06aa7c8b1 Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'share/qbs/modules/cpp/GenericGCC.qbs')
-rw-r--r--share/qbs/modules/cpp/GenericGCC.qbs3
1 files changed, 3 insertions, 0 deletions
diff --git a/share/qbs/modules/cpp/GenericGCC.qbs b/share/qbs/modules/cpp/GenericGCC.qbs
index d07c6e69d..6186d90eb 100644
--- a/share/qbs/modules/cpp/GenericGCC.qbs
+++ b/share/qbs/modules/cpp/GenericGCC.qbs
@@ -148,6 +148,9 @@ CppModule {
for (var i = 0; i < symlinkCount; ++i) {
cmd = new Command("ln", ["-sf", FileInfo.fileName(libFilePath),
links[i].fileName]);
+ cmd.description = "filegen";
+ cmd.description = "creating symbolic link '"
+ + FileInfo.fileName(links[i].fileName) + "'";
cmd.workingDirectory = FileInfo.path(libFilePath);
commands.push(cmd);
}