Make the ``-r'' option actually do something :)
Also tidy up it's output. Approved by: jkh
This commit is contained in:
parent
46fab06d29
commit
ad22c711eb
@ -179,6 +179,8 @@ pkg_do(char *pkg)
|
||||
printf("%sInformation for %s:\n\n", InfoPrefix, pkg);
|
||||
if (Flags & SHOW_COMMENT)
|
||||
show_file("Comment:\n", COMMENT_FNAME);
|
||||
if (Flags & SHOW_REQUIRE)
|
||||
show_plist("Depends on:\n", &plist, PLIST_PKGDEP);
|
||||
if ((Flags & SHOW_REQBY) && !isemptyfile(REQUIRED_BY_FNAME))
|
||||
show_file("Required by:\n", REQUIRED_BY_FNAME);
|
||||
if (Flags & SHOW_DESC)
|
||||
|
@ -152,7 +152,7 @@ show_plist(char *title, Package *plist, plist_t type)
|
||||
break;
|
||||
|
||||
case PLIST_PKGDEP:
|
||||
printf(Quiet ? "@pkgdep %s\n" : "\tPackage depends on: %s\n", p->name);
|
||||
printf(Quiet ? "@pkgdep %s\n" : "\t%s\n", p->name);
|
||||
break;
|
||||
|
||||
case PLIST_MTREE:
|
||||
|
Loading…
Reference in New Issue
Block a user