aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2015-02-03 09:31:09 -0800
committerJake Petroules <jake.petroules@petroules.com>2015-02-04 15:25:35 +0000
commit6c7df8f7c6b3070f10d8df9363df8be4103e1a87 (patch)
tree93b20c9ed9813b60985e6068a7db115e5b337616 /share
parentb5069f8076aad4d41ecec589441edb19b7db3493 (diff)
Remove qbs.endianness property - it is not used and will not be used.
Change-Id: I21802d17d5aaae8140ad6f666b1571a2f321e18e Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'share')
-rw-r--r--share/qbs/modules/qbs/common.qbs18
1 files changed, 0 insertions, 18 deletions
diff --git a/share/qbs/modules/qbs/common.qbs b/share/qbs/modules/qbs/common.qbs
index 46386b7b7..34818a08d 100644
--- a/share/qbs/modules/qbs/common.qbs
+++ b/share/qbs/modules/qbs/common.qbs
@@ -38,18 +38,6 @@ Module {
property string profile
property stringList toolchain
property string architecture
-
- property string endianness: {
- if (["x86", "x86_64"].contains(architecture))
- return "little";
- }
-
- PropertyOptions {
- name: "endianness"
- allowedValues: ["big", "little", "mixed"]
- description: "endianness of the target platform"
- }
-
property bool install: false
property string installSourceBase
readonly property string installRoot: undefined
@@ -94,12 +82,6 @@ Module {
}, "'" + architecture + "' is invalid. You must use the canonical name '" +
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]");
-
validator.validate();
}