# HG changeset patch # User Ed Swartz # Date 1260307911 21600 # Node ID 1003c657f83ad859187c60e1f011e3c47d6e7b6e # Parent ebac5cfd032ea9b5c60f67006905905ab81e05ce For now, disable help compiler for Raptor in Linux, since build scripts are still Win32-centric diff -r ebac5cfd032e -r 1003c657f83a core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/processes/CheckS60CustKitSupport.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/processes/CheckS60CustKitSupport.java Tue Dec 08 11:50:06 2009 -0600 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/processes/CheckS60CustKitSupport.java Tue Dec 08 15:31:51 2009 -0600 @@ -20,6 +20,7 @@ import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.Plugin; +import com.nokia.carbide.cpp.internal.api.sdk.SBSv2Utils; import com.nokia.carbide.cpp.sdk.core.ISymbianBuildContext; import com.nokia.carbide.cpp.sdk.core.ISymbianSDK; import com.nokia.carbide.cpp.sdk.core.SDKCorePlugin; @@ -111,6 +112,13 @@ if (HostOS.IS_WIN32) { helpCompilerNames = new String[] { HELP_COMPILER_WIN32, HELP_COMPILER_PERL }; } else { + + // TODO: the infrastructure for the techview/bldhelp.mk is a total mess + // currently, and it also appears that help is obsolete in recent devkits, + // so just drop this + if (!SBSv2Utils.enableSBSv1Support()) + return null; + helpCompilerNames = new String[] { HELP_COMPILER_PERL }; } for (ISymbianBuildContext symbianBuildContext : getBuildContexts(template)) {