aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2014-07-22 09:08:36 -0400
committerChristian Kandeler <christian.kandeler@digia.com>2014-07-22 17:03:24 +0200
commitc1767ae75e098ae224337cc2b8bd886be54c2e86 (patch)
tree7aa3d75f6f54452ceca11c8ddda757f0f89ecb2f /share
parent0891934859a1a19abb82e3536ef9f425fe0f5fc8 (diff)
Allow qbs.endianness to be undefined.
If the property IS defined, it still must be in [big, little, mixed]. Change-Id: I77d64580d1dcce8ad027500ee8e394bf05d3d961 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'share')
-rw-r--r--share/qbs/modules/qbs/common.qbs2
1 files changed, 2 insertions, 0 deletions
diff --git a/share/qbs/modules/qbs/common.qbs b/share/qbs/modules/qbs/common.qbs
index 0425d70d5..ca1168409 100644
--- a/share/qbs/modules/qbs/common.qbs
+++ b/share/qbs/modules/qbs/common.qbs
@@ -93,6 +93,8 @@ Module {
canonicalArchitecture(architecture) + "'");
validator.addCustomValidator("endianness", endianness, function (value) {
+ if (value === undefined)
+ return true;
return ["big", "little", "mixed"].indexOf(value) !== -1;
}, "must be in [big, little, mixed]");