Added a new conf option: XBPS_PACKAGESDIR.

This is to specify where to store the binary packages.

--HG--
extra : convert_revision : 16d810d058b78662a33d8492caf7981e0700808e
This commit is contained in:
Juan RP
2008-12-13 07:04:53 +01:00
parent 8df4138beb
commit e817d470ab
4 changed files with 17 additions and 7 deletions

View File

@@ -273,7 +273,7 @@ list_pkgs_in_dict(prop_dictionary_t dict)
prop_dictionary_get_cstring_nocopy(obj, "version", &version);
prop_dictionary_get_cstring_nocopy(obj, "short_desc", &short_desc);
if (pkgname && version && short_desc)
printf("%s-%s\t%s\n", pkgname, version, short_desc);
printf("%s (%s)\t%s\n", pkgname, version, short_desc);
}
prop_object_iterator_release(iter);
}