1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Adjustment to last commit. Use project referenced in the launch config rather than the one stored in the field 'project' (copy&paste goof).

This commit is contained in:
John Cortell 2008-08-20 21:04:48 +00:00
parent c2c4bc613c
commit f98068dadf

View file

@ -374,7 +374,7 @@ abstract public class AbstractCLaunchDelegate extends LaunchConfigurationDelegat
ICDTLaunchConfigurationConstants.ERR_UNSPECIFIED_PROGRAM);
}
if (!programPath.isAbsolute()) {
IPath location = project.getLocation();
IPath location = cproject.getProject().getLocation();
if (location != null) {
programPath = location.append(programPath);
}