state: upgrade deps for given packages to add -u

cute-signatures
Natanael Copa 2009-05-24 15:20:35 +02:00
parent 651aa71ac2
commit d584b19c32
1 changed files with 4 additions and 4 deletions

View File

@ -412,10 +412,6 @@ int apk_state_lock_name(struct apk_state *state,
}
}
/* If the chosen package is installed, all is done here */
if (oldpkg == newpkg)
return 0;
/* First we need to make sure the dependants of the old package
* still have their dependencies ok. */
if (oldpkg != NULL) {
@ -434,6 +430,10 @@ int apk_state_lock_name(struct apk_state *state,
return r;
}
/* If the chosen package is installed, all is done here */
if (oldpkg == newpkg)
return 0;
/* Track change */
r = apk_state_add_change(state, oldpkg, newpkg);
if (r != 0)