From 3f01107b12a079fb0345db645da0c7ab6db9ffdc Mon Sep 17 00:00:00 2001 From: Maniacikarus Date: Sat, 13 Sep 2008 22:01:20 +0200 Subject: [PATCH] Fixed pakfire installing upgrades twice --- src/pakfire/lib/functions.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pakfire/lib/functions.pl b/src/pakfire/lib/functions.pl index 491c4b076c..91e7930d11 100644 --- a/src/pakfire/lib/functions.pl +++ b/src/pakfire/lib/functions.pl @@ -410,6 +410,7 @@ sub dblist { foreach $file (@files) { next if ( $file eq "." ); next if ( $file eq ".." ); + next if ( $file =~ /^old/ ); open(FILE, "<$Conf::dbdir/meta/$file"); @meta = ; close(FILE); -- 2.39.2