Abi: Recognize harmattan as linux flavor

... when parsing an abi string

Change-Id: Icb6fc352ff2d58f6ae7f38eba803c12f2d3d082a
Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
This commit is contained in:
Tobias Hunger
2012-06-06 16:18:30 +02:00
parent 047cdc284e
commit bf9b3e589c

View File

@@ -385,6 +385,8 @@ Abi::Abi(const QString &abiString) :
m_osFlavor = OpenBsdFlavor;
else if (abiParts.at(2) == QLatin1String("maemo") && m_os == LinuxOS)
m_osFlavor = MaemoLinuxFlavor;
else if (abiParts.at(2) == QLatin1String("harmattan") && m_os == LinuxOS)
m_osFlavor = HarmattanLinuxFlavor;
else if (abiParts.at(2) == QLatin1String("meego") && m_os == LinuxOS)
m_osFlavor = MeegoLinuxFlavor;
else if (abiParts.at(2) == QLatin1String("generic") && m_os == MacOS)