mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-09 09:15:38 +02:00
Fix for relative source/output entries calculation
This commit is contained in:
parent
c8dce15ce0
commit
acb2de5ef9
1 changed files with 1 additions and 1 deletions
|
@ -1035,7 +1035,7 @@ public class CDataUtil {
|
||||||
path = path.removeFirstSegments(projPath.segmentCount()).makeRelative();
|
path = path.removeFirstSegments(projPath.segmentCount()).makeRelative();
|
||||||
else if (force)
|
else if (force)
|
||||||
path = path.makeRelative();
|
path = path.makeRelative();
|
||||||
return (ICExclusionPatternPathEntry)CDataUtil.createEntry(entry.getKind(), entry.getName(), entry.getValue(), entry.getExclusionPatterns(), entry.getFlags());
|
return (ICExclusionPatternPathEntry)CDataUtil.createEntry(entry.getKind(), path.toString(), null, entry.getExclusionPatterns(), entry.getFlags());
|
||||||
}
|
}
|
||||||
return entry;
|
return entry;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue