# HG changeset patch # User timkelly # Date 1270759372 18000 # Node ID 9d05552239c24f4e884ffbfe5aea8b3111404d42 # Parent bd6d38c79993a08fffd8ad47d3c070bd2f5931bd Fix bug 11048 diff -r bd6d38c79993 -r 9d05552239c2 core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/SBSv2Utils.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/SBSv2Utils.java Thu Apr 08 14:13:43 2010 -0500 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/SBSv2Utils.java Thu Apr 08 15:42:52 2010 -0500 @@ -267,7 +267,10 @@ // Get the parent base build platform String baseBuildPlatform = null; if (parentNode != null){ - baseBuildPlatform = parentNode.getAttributes().getNamedItem("name").getNodeValue(); + baseBuildPlatform = parentNode.getAttributes().getNamedItem("name").getNodeValue(); + if (baseBuildPlatform.split("_").length > 1){ + baseBuildPlatform = baseBuildPlatform.split("_")[0]; + } } // only support configs that fall into something we can make a build context // out of. They must have a platform and a target.