Restore dependency handling

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@25971 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2008-01-18 12:12:39 +00:00
parent 583315661b
commit d7a0a0cc0d
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2008-01-18 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/autogsdoc.m: Fix bug recording sources and outputs in
index and dependencies.
2008-01-14 Nicola Pero <nicola.pero@meta-innovation.com>
* configure.ac: Do not read obsolete GNUSTEP_USER_DIR and do not

View file

@ -1259,6 +1259,7 @@ main(int argc, char **argv, char **env)
*/
a = [projectRefs sourcesForHeader: hfile];
[a insertObject: hfile atIndex: 0];
[projectRefs setSources: a forHeader: hfile];
for (j = 0; j < [a count]; j++)
{
NSString *sfile = [a objectAtIndex: j];
@ -1286,6 +1287,7 @@ main(int argc, char **argv, char **env)
if ([a count] == 0)
{
[a insertObject: gsdocfile atIndex: 0];
[projectRefs setOutputs: a forHeader: hfile];
}
for (j = 0; j < [a count]; j++)
{