aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/qbs
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2013-06-03 05:04:12 -0400
committerJoerg Bornemann <joerg.bornemann@digia.com>2013-06-03 12:36:13 +0200
commit8018ff996a0ab8fa9f25e017441e2776ae667ffb (patch)
tree5cd671b6c7ef84f80956c0ed75d636d8a514745b /share/qbs/modules/qbs
parentacf8e4f4fcf14d6edf6fbb79ae2cfae1ce475baa (diff)
Be less ambiguous about the naming and referencing of OS X.
Change-Id: I7a389cb744c451cee435196fd65a8987199d3ed5 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'share/qbs/modules/qbs')
-rw-r--r--share/qbs/modules/qbs/common.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qbs/modules/qbs/common.qbs b/share/qbs/modules/qbs/common.qbs
index f7ac5f340..546db6254 100644
--- a/share/qbs/modules/qbs/common.qbs
+++ b/share/qbs/modules/qbs/common.qbs
@@ -16,7 +16,7 @@ Module {
platforms.push("unix");
else if (targetOS === "android")
platforms.push("linux", "unix");
- else if (targetOS === "mac" || targetOS === "ios")
+ else if (targetOS === "osx" || targetOS === "ios")
platforms.push("darwin", "unix");
return platforms
}