lib/repo_pkgdeps.c: fix some debug printfs.
This commit is contained in:
parent
0c208bb744
commit
3bc6354550
@ -293,14 +293,14 @@ find_repo_deps(struct xbps_handle *xhp,
|
|||||||
}
|
}
|
||||||
rv = add_missing_reqdep(xhp, reqpkg);
|
rv = add_missing_reqdep(xhp, reqpkg);
|
||||||
if (rv != 0 && rv != EEXIST) {
|
if (rv != 0 && rv != EEXIST) {
|
||||||
xbps_dbg_printf_append(xhp, "`%s': add_missing_reqdep failed %s\n", reqpkg);
|
xbps_dbg_printf(xhp, "`%s': add_missing_reqdep failed %s\n", reqpkg);
|
||||||
break;
|
break;
|
||||||
} else if (rv == EEXIST) {
|
} else if (rv == EEXIST) {
|
||||||
xbps_dbg_printf_append(xhp, "`%s' missing dep already added.\n", reqpkg);
|
xbps_dbg_printf(xhp, "`%s' missing dep already added.\n", reqpkg);
|
||||||
rv = 0;
|
rv = 0;
|
||||||
continue;
|
continue;
|
||||||
} else {
|
} else {
|
||||||
xbps_dbg_printf_append(xhp, "`%s' added into the missing deps array.\n", reqpkg);
|
xbps_dbg_printf(xhp, "`%s' added into the missing deps array.\n", reqpkg);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user