* Framework/PCProjectBuilder.m: (parseErrorLine:) prepend filname with current

build path.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@28725 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Sergii Stoian 2009-09-22 21:59:53 +00:00
parent 1a3b127a7e
commit 45320c4c28

View file

@ -718,7 +718,7 @@
[self cleanupAfterMake];
}
// --- BuilderOptions delgate
// --- BuilderOptions delegate
- (void)targetDidSet:(NSString *)target
{
[buildTarget setString:target];
@ -1144,7 +1144,8 @@
{// first message after "In file included from"
// NSLog(@"Inlcuded File: %@", file);
includedFile = [components objectAtIndex:0];
file = includedFile;
file =
[currentBuildPath stringByAppendingPathComponent:includedFile];
currentEL = ELIncludedError;
}
else