aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/shared
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2013-03-21 18:03:55 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2013-03-22 15:50:25 +0100
commit611da6d02c9bef293c638e85f7ac63336b8d487d (patch)
tree170ce5532d287d0a748577bd6cb7f0bd30482e83 /src/app/shared
parenta4699d536c45489389dacbdaf537f6a1ecd12537 (diff)
change values of qbs.endianness
The valid values for the endianness are now "big", "little" and "mixed". Task-number: QBS-236 Change-Id: I710f2e1b7d1e5c71471d51519dff3e15aeb4b829 Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'src/app/shared')
-rw-r--r--src/app/shared/specialplatformssetup.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/shared/specialplatformssetup.cpp b/src/app/shared/specialplatformssetup.cpp
index 88d50d103..0c16d805f 100644
--- a/src/app/shared/specialplatformssetup.cpp
+++ b/src/app/shared/specialplatformssetup.cpp
@@ -147,7 +147,7 @@ void SpecialPlatformsSetup::registerProfile(const PlatformInfo &platformInfo)
Profile profile(platformInfo.name, m_settings);
profile.removeProfile();
profile.setValue(QLatin1String("qbs.toolchain"), QLatin1String("gcc"));
- profile.setValue(QLatin1String("qbs.endianness"), QLatin1String("little-endian"));
+ profile.setValue(QLatin1String("qbs.endianness"), QLatin1String("little"));
profile.setValue(QLatin1String("qbs.targetOS"), platformInfo.targetOS);
profile.setValue(QLatin1String("qbs.targetPlatform"), platformInfo.targetPlatform);
profile.setValue(QLatin1String("qbs.sysroot"), platformInfo.sysrootDir);