Don't hide obsoleted packages from builds-<arch>
This commit is contained in:
parent
042f6862d6
commit
11e2a198e5
@ -1639,8 +1639,8 @@ generateHTMLFiles(struct configTag *ct, int arch)
|
||||
"<tr><td>Required by:</td><td><font size=\"-1\">");
|
||||
auxheaderlist = ct->headerlist[arch];
|
||||
while (auxheaderlist) {
|
||||
if (auxheaderlist != currheaderlist)
|
||||
found = 0;
|
||||
if (auxheaderlist != currheaderlist) {
|
||||
for (i = 0; i < auxheaderlist->requirecount; i++) {
|
||||
if (auxheaderlist->require[i]->resolved) {
|
||||
for (j = 0; j < auxheaderlist->require[i]->resolved->numproviders; j++) {
|
||||
@ -1660,6 +1660,7 @@ generateHTMLFiles(struct configTag *ct, int arch)
|
||||
}
|
||||
if (found) break;
|
||||
}
|
||||
}
|
||||
auxheaderlist = auxheaderlist->next;
|
||||
}
|
||||
fprintf(fout, "</font></td></tr>\n");
|
||||
@ -1840,10 +1841,8 @@ print_datatables(struct configTag *ct, int arch) {
|
||||
currheaderlist = ct->headerlist[arch];
|
||||
while (currheaderlist) {
|
||||
fprintf(fs,"%s: _%s\n", currheaderlist->name, currheaderlist->sourceheader->name);
|
||||
if (!currheaderlist->obsoleted) {
|
||||
fprintf(fd,"%s ", currheaderlist->name);
|
||||
fprintf(fb,"%s ",currheaderlist->name);
|
||||
}
|
||||
currheaderlist = currheaderlist->next;
|
||||
}
|
||||
fprintf(fd,"\n");
|
||||
|
Loading…
Reference in New Issue
Block a user