From 93a3050ed9e9735352013014da52adcdf896f95f Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 5 Feb 2008 17:57:17 -0600 Subject: Remove "Installed Size" hackeration Keeping this hack around where installed size is only shown if it is greater than total download size encourages broken repository databases. Signed-off-by: Dan McGee --- src/pacman/util.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src') diff --git a/src/pacman/util.c b/src/pacman/util.c index c646d7aa..42b0c98d 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -462,11 +462,7 @@ void display_targets(const alpm_list_t *syncpkgs, pmdb_t *db_local) printf("\n"); printf(_("Total Download Size: %.2f MB\n"), mbdlsize); - - /* TODO because all pkgs don't include isize, this is a crude hack */ - if(mbisize > mbdlsize) { - printf(_("Total Installed Size: %.2f MB\n"), mbisize); - } + printf(_("Total Installed Size: %.2f MB\n"), mbisize); FREELIST(targets); } -- cgit v1.2.3