--- 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.