diff options
-rwxr-xr-x | bin/portageq | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/portageq b/bin/portageq index 11ac316eb..99bf49bc2 100755 --- a/bin/portageq +++ b/bin/portageq @@ -306,10 +306,13 @@ def list_preserved_libs(argv): mylibs = portage.db[argv[0]]["vartree"].dbapi.plib_registry.getPreservedLibs() rValue = 0 for cpv in mylibs: + print cpv, for path in mylibs[cpv]: - print "%s: %s" % (cpv, path) + print path, rValue = 1 + print return rValue +list_preserved_libs.uses_root = True #----------------------------------------------------------------------------- # |