diff options
author | Francois Pons <fpons@mandriva.com> | 2003-10-16 09:50:12 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-10-16 09:50:12 +0000 |
commit | 5ef6f6e882e9a572078a2e717ecb9e7d13590e06 (patch) | |
tree | f2557bfc1c0531eacd504c4a63940be5e5be2c23 /perl-install/pkgs.pm | |
parent | c774096c39d2e63e30dfff1ad77466d5472a63f3 (diff) | |
download | drakx-5ef6f6e882e9a572078a2e717ecb9e7d13590e06.tar drakx-5ef6f6e882e9a572078a2e717ecb9e7d13590e06.tar.gz drakx-5ef6f6e882e9a572078a2e717ecb9e7d13590e06.tar.bz2 drakx-5ef6f6e882e9a572078a2e717ecb9e7d13590e06.tar.xz drakx-5ef6f6e882e9a572078a2e717ecb9e7d13590e06.zip |
fixed stupid typo.
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r-- | perl-install/pkgs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 1b27eaf36..2c7cc01f9 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -416,7 +416,7 @@ sub psUsingHdlist { #- get all keys corresponding in the right pubkey file, #- they will be added in rpmdb later if not found. if (!$o_fhdlist || $o_fpubkey) { - my $pubkey = install_any::getFile($o_fpubkey || "Mandrake/base/pubkey" . ($hdlist =~ /hdlist(\S*)\.cz2?/ && $1)); + my $pubkey = $o_fpubkey || install_any::getFile("Mandrake/base/pubkey" . ($hdlist =~ /hdlist(\S*)\.cz2?/ && $1)); $m->{pubkey} = [ $packages->parse_armored_file($pubkey) ]; } |