diff --git a/ChangeLog b/ChangeLog index 16a861ea7..36539c1da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-01-18 Richard Frith-Macdonald + + * Tools/autogsdoc.m: Fix bug recording sources and outputs in + index and dependencies. + 2008-01-14 Nicola Pero * configure.ac: Do not read obsolete GNUSTEP_USER_DIR and do not diff --git a/Tools/autogsdoc.m b/Tools/autogsdoc.m index 0b3d10811..63cfbb3b3 100644 --- a/Tools/autogsdoc.m +++ b/Tools/autogsdoc.m @@ -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++) {