1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Fix for [Bug 182309] The managed build does not work for source files in source folders.

This commit is contained in:
Mikhail Sennikovsky 2007-04-13 12:24:09 +00:00
parent 6af8afe7af
commit 61c00b3d3b

View file

@ -504,6 +504,10 @@ public class CDataUtil {
public static boolean isExcluded(IPath path, ICSourceEntry entry){
IPath entryPath = new Path(entry.getName());
if(path.isPrefixOf(entryPath))
return false;
if(!entryPath.isPrefixOf(path))
return true;