diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-11-26 12:38:17 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-11-26 12:38:17 +0000 |
commit | 6c3678b7655a2e2dbd75b4b51365346042582569 (patch) | |
tree | 2fbe3f490b45f728a5c3fd5e3a6a71169706e636 /perl-install/pkgs.pm | |
parent | b071e429fa16c02709fa05828999ac30be42b03a (diff) | |
download | drakx-6c3678b7655a2e2dbd75b4b51365346042582569.tar drakx-6c3678b7655a2e2dbd75b4b51365346042582569.tar.gz drakx-6c3678b7655a2e2dbd75b4b51365346042582569.tar.bz2 drakx-6c3678b7655a2e2dbd75b4b51365346042582569.tar.xz drakx-6c3678b7655a2e2dbd75b4b51365346042582569.zip |
We won't have files named compssUsers.pl.<meta_class> since they're all
merged now.
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r-- | perl-install/pkgs.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 446a1f479..572e55b10 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -623,9 +623,9 @@ sub read_rpmsrate { } sub readCompssUsers { - my ($meta_class, $file) = @_; + my ($file) = @_; - my $f = $meta_class && install_any::getFile("$file.$meta_class") || install_any::getFile($file) + my $f = install_any::getFile($file) or do { log::l("can't find $file: $!"); return (undef, undef) }; my ($compssUsers, $gtk_display_compssUsers) = eval join('', <$f>); if ($@) { |