summaryrefslogtreecommitdiff
path: root/share/qbs/modules
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2013-11-07 00:59:49 -0500
committerJoerg Bornemann <joerg.bornemann@digia.com>2013-11-07 11:11:11 +0100
commit1eef762389a803b176bef41b5d19c2b42250d0c8 (patch)
tree8191cba7208b64520fb3c221ab69b3631207c505 /share/qbs/modules
parent131fcd07239222e528cddcdf43337a4aa093f771 (diff)
downloadqbs-1eef762389a803b176bef41b5d19c2b42250d0c8.tar.gz
Silence framework bundle structural commands.
Change-Id: I6d54f266b1ffc1fa2b5e5f01f2c0a9043c303969 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'share/qbs/modules')
-rw-r--r--share/qbs/modules/cpp/DarwinGCC.qbs3
1 files changed, 3 insertions, 0 deletions
diff --git a/share/qbs/modules/cpp/DarwinGCC.qbs b/share/qbs/modules/cpp/DarwinGCC.qbs
index 381174d78..be5c2ae45 100644
--- a/share/qbs/modules/cpp/DarwinGCC.qbs
+++ b/share/qbs/modules/cpp/DarwinGCC.qbs
@@ -325,14 +325,17 @@ UnixGCC {
cmd = new Command("ln", ["-sf", "Versions/Current/Headers", "Headers"]);
cmd.workingDirectory = output.fileName;
+ cmd.silent = true;
commands.push(cmd);
cmd = new Command("ln", ["-sf", "Versions/Current/Resources", "Resources"]);
cmd.workingDirectory = output.fileName;
+ cmd.silent = true;
commands.push(cmd);
cmd = new Command("ln", ["-sf", "Versions/Current/" + product.targetName, product.targetName]);
cmd.workingDirectory = output.fileName;
+ cmd.silent = true;
commands.push(cmd);
return commands;
}