aboutsummaryrefslogtreecommitdiffstats
path: root/src/app
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2017-08-14 16:18:42 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2017-08-14 16:18:42 +0200
commit187c114987572f5492722b4d66b76366e3e50365 (patch)
treebc2bff3a99b333433f09537bc0b9c5fc709057e0 /src/app
parent6144279d346670130e0ecdfaf789beaa44cd6755 (diff)
parentadc28c434853cf0fa17e95cc207e5a1c6eb761de (diff)
Merge 1.9 into master
Diffstat (limited to 'src/app')
-rw-r--r--src/app/config-ui/config-ui.qbs6
-rw-r--r--src/app/qbs/parser/commandlineparser.cpp2
2 files changed, 5 insertions, 3 deletions
diff --git a/src/app/config-ui/config-ui.qbs b/src/app/config-ui/config-ui.qbs
index 33fe36eae..2222e6a17 100644
--- a/src/app/config-ui/config-ui.qbs
+++ b/src/app/config-ui/config-ui.qbs
@@ -26,6 +26,8 @@ QbsApp {
cpp.frameworks: ["ApplicationServices", "Cocoa"]
}
- Depends { name: "bundle" }
- bundle.isBundle: false
+ Properties {
+ condition: qbs.targetOS.contains("darwin")
+ bundle.isBundle: false
+ }
}
diff --git a/src/app/qbs/parser/commandlineparser.cpp b/src/app/qbs/parser/commandlineparser.cpp
index 4105a5bd2..33e8af7d3 100644
--- a/src/app/qbs/parser/commandlineparser.cpp
+++ b/src/app/qbs/parser/commandlineparser.cpp
@@ -391,7 +391,7 @@ static QString extractToolDescription(const QString &tool, const QString &output
QString CommandLineParser::CommandLineParserPrivate::generalHelp() const
{
QString help = Tr::tr("Usage: qbs [command] [command parameters]\n");
- help += Tr::tr("Internal commands:\n");
+ help += Tr::tr("Built-in commands:\n");
const int rhsIndentation = 30;
// Sorting the commands by name is nicer for the user.