info: don't print package name unless its installed

cute-signatures
Natanael Copa 2009-01-20 13:26:06 +00:00
parent 20d242a4bd
commit 6078d305f4
1 changed files with 2 additions and 1 deletions

View File

@ -118,7 +118,8 @@ static int info_contents(struct apk_database *db, int argc, char **argv)
}
for (j = 0; j < name->pkgs->num; j++) {
struct apk_package *pkg = name->pkgs->item[j];
if (apk_verbosity == 1)
if (apk_verbosity == 1
&& apk_pkg_get_state(pkg) == APK_STATE_INSTALL)
printf("\n%s-%s contains:\n", pkg->name->name,
pkg->version);
info_print_contents(name->pkgs->item[j]);