Remove unused field buildpriority in providedList
This commit is contained in:
parent
57a0e45218
commit
e23954abf5
@ -467,7 +467,6 @@ resolveFirstLevelDependencies(struct configTag *ct, int archidx)
|
|||||||
scanheader=file->provider[0];
|
scanheader=file->provider[0];
|
||||||
provided->numproviders=file->numproviders;
|
provided->numproviders=file->numproviders;
|
||||||
provided->numbuildproviders=0;
|
provided->numbuildproviders=0;
|
||||||
provided->buildpriority=0;
|
|
||||||
provided->provider=file->provider;
|
provided->provider=file->provider;
|
||||||
provided->flags=0;
|
provided->flags=0;
|
||||||
} else {
|
} else {
|
||||||
@ -482,7 +481,6 @@ resolveFirstLevelDependencies(struct configTag *ct, int archidx)
|
|||||||
if (scanheader) {
|
if (scanheader) {
|
||||||
provided->numproviders=1;
|
provided->numproviders=1;
|
||||||
provided->numbuildproviders=0;
|
provided->numbuildproviders=0;
|
||||||
provided->buildpriority=0;
|
|
||||||
provided->provider=malloc(sizeof(struct headerList*));
|
provided->provider=malloc(sizeof(struct headerList*));
|
||||||
provided->provider[0]=scanheader;
|
provided->provider[0]=scanheader;
|
||||||
provided->flags=0;
|
provided->flags=0;
|
||||||
@ -720,7 +718,6 @@ resolveFirstLevelSourceDependencies(struct configTag *ct, int archidx)
|
|||||||
file=findOrCreateFileTreeEntry(&ct->filetree[archidx],currsourceheader->require[i]->name);
|
file=findOrCreateFileTreeEntry(&ct->filetree[archidx],currsourceheader->require[i]->name);
|
||||||
if (file->numproviders > 0) {
|
if (file->numproviders > 0) {
|
||||||
provided->numbuildproviders=file->numproviders;
|
provided->numbuildproviders=file->numproviders;
|
||||||
provided->buildpriority=0;
|
|
||||||
provided->buildprovider=file->provider;
|
provided->buildprovider=file->provider;
|
||||||
provided->flags=0;
|
provided->flags=0;
|
||||||
logmsg(LOG_DEBUG,"file %s is a build provider for %s",currsourceheader->require[i]->name,currsourceheader->name);
|
logmsg(LOG_DEBUG,"file %s is a build provider for %s",currsourceheader->require[i]->name,currsourceheader->name);
|
||||||
|
@ -30,7 +30,6 @@ struct providedList {
|
|||||||
int numbuildproviders;
|
int numbuildproviders;
|
||||||
struct headerList **buildprovider;
|
struct headerList **buildprovider;
|
||||||
char **version;
|
char **version;
|
||||||
int buildpriority;
|
|
||||||
struct providedList *next;
|
struct providedList *next;
|
||||||
long id;
|
long id;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user