Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Recoskie2008-02-05 19:30:03 +0000
committerChris Recoskie2008-02-05 19:30:03 +0000
commit48c558488704fd8e49dc33149b34a5be1950050b (patch)
treeb53c456165aa680d964b8280ec2dd38b0972d099 /build/org.eclipse.cdt.make.core
parent80485fce8a4c7f4d063a1bb113bcf770c51b8f76 (diff)
downloadorg.eclipse.cdt-48c558488704fd8e49dc33149b34a5be1950050b.tar.gz
org.eclipse.cdt-48c558488704fd8e49dc33149b34a5be1950050b.tar.xz
org.eclipse.cdt-48c558488704fd8e49dc33149b34a5be1950050b.zip
some fixes to project description manager and build system to allow EFS hosted projects to function better
Diffstat (limited to 'build/org.eclipse.cdt.make.core')
-rw-r--r--build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig/gnu/AbstractGCCBOPConsoleParserUtility.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig/gnu/AbstractGCCBOPConsoleParserUtility.java b/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig/gnu/AbstractGCCBOPConsoleParserUtility.java
index 075a57b1882..f13aba8fc23 100644
--- a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig/gnu/AbstractGCCBOPConsoleParserUtility.java
+++ b/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig/gnu/AbstractGCCBOPConsoleParserUtility.java
@@ -89,7 +89,7 @@ public abstract class AbstractGCCBOPConsoleParserUtility {
protected void pushDirectory(IPath dir) {
if (dir != null) {
IPath pwd = null;
- if (fBaseDirectory.isPrefixOf(dir)) {
+ if (fBaseDirectory != null && fBaseDirectory.isPrefixOf(dir)) {
pwd = dir.removeFirstSegments(fBaseDirectory.segmentCount());
} else {
// check if it is a cygpath

Back to the top