From f0c3d7a85cd08deae78bd84cc330d5c188c74207 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Wed, 18 Feb 2004 14:36:50 +0000 Subject: tentatively fix #7792 (seems like line number don't match #7792, but this one I'm fixing was obviously wrong, at least) --- perl-install/install_any.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/install_any.pm') diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 36942fa6b..491f3b30b 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -562,7 +562,7 @@ sub install_urpmi { open(my $F, "parsehdlist '$prefix/var/lib/urpmi/hdlist.$name.cz' |"); local $_; while (<$F>) { - my $arch = $_->arch; + my ($arch) = $_ =~ /\.([^\.]+)\.rpm/; my $ldir = $dir; $ldir =~ s|/([^/]*)%{ARCH}|/./$1$arch|; $ldir =~ s|%{ARCH}|$arch|g; print $LIST "$ldir/$_"; -- cgit v1.2.1