mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-19 10:00:48 +00:00
* 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:
parent
1a3b127a7e
commit
45320c4c28
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue