diff options
author | Francois Pons <fpons@mandriva.com> | 2003-03-12 16:20:59 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-03-12 16:20:59 +0000 |
commit | 302893f64975ad9009f131f01db15d77837f8ce6 (patch) | |
tree | 6a287303540b63a7eb1f0b7bd5c4c434f1187818 | |
parent | 09cfa860203cebc29b385174ce809b7f855a64c5 (diff) | |
download | drakx-302893f64975ad9009f131f01db15d77837f8ce6.tar drakx-302893f64975ad9009f131f01db15d77837f8ce6.tar.gz drakx-302893f64975ad9009f131f01db15d77837f8ce6.tar.bz2 drakx-302893f64975ad9009f131f01db15d77837f8ce6.tar.xz drakx-302893f64975ad9009f131f01db15d77837f8ce6.zip |
fixed return value of check_kernel_module_packages and examination of synthesis
file using current interface of urpm library.
-rw-r--r-- | perl-install/standalone.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm index df4082cb9..e3b7d29e0 100644 --- a/perl-install/standalone.pm +++ b/perl-install/standalone.pm @@ -231,7 +231,7 @@ sub check_kernel_module_packages { $result = [ keys(%select), if_($ext_name, $ext_name) ]; } } - return undef; + return $result; } sub what_provides { |