1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

bug 294878: JUnit failure: managedbuilder BuildDescriptionModelTests.testDesTestgnu21_exe

This commit is contained in:
Andrew Gvozdev 2010-01-06 04:15:14 +00:00
parent b15a7b94dd
commit f1173ce9a8

View file

@ -1375,7 +1375,7 @@ public class BuildDescription implements IBuildDescription {
BuildIOType buildArg = action.createIOType(false, true, null); BuildIOType buildArg = action.createIOType(false, true, null);
BuildResource outRc = createResource(outLocation, getURIForFullPath(outFullPath)); BuildResource outRc = createResource(outFullPath, getURIForFullPath(outLocation));
buildArg.addResource(outRc); buildArg.addResource(outRc);
} }
@ -1936,7 +1936,7 @@ public class BuildDescription implements IBuildDescription {
} }
public BuildResource createResource(IPath projPath){ public BuildResource createResource(IPath projPath){
return createResource(projPath, createProjectRelativeURI(projPath)); return createResource(fProject.getFullPath().append(projPath), createProjectRelativeURI(projPath));
} }
private URI createProjectRelativeURI(IPath projPath) { private URI createProjectRelativeURI(IPath projPath) {