xbps-fbulk(1): ignore xbps-src msgs (those starting with '=>').
Reported by @chneukirchen.
This commit is contained in:
parent
c91b942a45
commit
27e36fcbf9
@ -488,12 +488,15 @@ ordered_depends(const char *bpath, const char *pkgn)
|
|||||||
while (fgets(buf, sizeof(buf), fp) != NULL) {
|
while (fgets(buf, sizeof(buf), fp) != NULL) {
|
||||||
size_t len;
|
size_t len;
|
||||||
|
|
||||||
/* ignore pkgs returning errors */
|
|
||||||
if (strncmp(buf, "=> ERROR", 8) == 0) {
|
if (strncmp(buf, "=> ERROR", 8) == 0) {
|
||||||
|
/* ignore pkgs returning errors */
|
||||||
item->emsg = strdup(buf);
|
item->emsg = strdup(buf);
|
||||||
item->status = XBROKEN;
|
item->status = XBROKEN;
|
||||||
item->xcode = EXIT_FAILURE;
|
item->xcode = EXIT_FAILURE;
|
||||||
break;
|
break;
|
||||||
|
} else if (strncmp(buf, "=>", 2) == 0) {
|
||||||
|
/* ignore xbps-src msgs */
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
len = strlen(buf);
|
len = strlen(buf);
|
||||||
if (len && buf[len-1] == '\n')
|
if (len && buf[len-1] == '\n')
|
||||||
|
Loading…
Reference in New Issue
Block a user