Really fix #53 this time: with or without -n.

This commit is contained in:
Juan RP
2014-08-23 16:25:51 +02:00
parent 5a1919e520
commit bc92b387cb
2 changed files with 8 additions and 3 deletions

View File

@ -236,9 +236,10 @@ main(int argc, char **argv)
rv = exec_transaction(&xh, maxcols, yes, drun);
} else if (!update) {
/* Install target packages */
int npkgs = argc - optind;
for (i = optind; i < argc; i++) {
rv = install_new_pkg(&xh, argv[i], reinstall);
if (optind >= 2 && rv == EEXIST) {
if (npkgs >= 2 && rv == EEXIST) {
rv = 0;
} else if (rv != 0) {
xbps_pkgdb_unlock(&xh);