xbps-install: revert fa40928026
.
If a package is already installed and it's being installed without -f (force), xbps-install must return EEXIST. xbps-src really expects this to ignore duplicated build dependencies.
This commit is contained in:
parent
68770053e9
commit
a0d50f542a
@ -218,7 +218,6 @@ install_new_pkg(struct xbps_handle *xhp, const char *pkg, bool reinstall)
|
||||
if ((rv = xbps_transaction_install_pkg(xhp, pkg, reinstall)) != 0) {
|
||||
if (rv == EEXIST) {
|
||||
printf("Package `%s' already installed.\n", pkg);
|
||||
rv = 0;
|
||||
} else if (rv == ENOENT) {
|
||||
fprintf(stderr, "Unable to locate '%s' in "
|
||||
"repository pool.\n", pkg);
|
||||
|
Loading…
Reference in New Issue
Block a user