diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-05-03 09:54:33 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-05-03 09:54:33 +0000 |
commit | 63e56c659ec455089815eaf3312d668fe60677e1 (patch) | |
tree | f7b21a5284a0e402e92886ae8487314bffccdb5e /perl-install | |
parent | 398eb0953c8d865ea1c76ce76aa26eb1fe4d3a4e (diff) | |
download | drakx-backup-do-not-use-63e56c659ec455089815eaf3312d668fe60677e1.tar drakx-backup-do-not-use-63e56c659ec455089815eaf3312d668fe60677e1.tar.gz drakx-backup-do-not-use-63e56c659ec455089815eaf3312d668fe60677e1.tar.bz2 drakx-backup-do-not-use-63e56c659ec455089815eaf3312d668fe60677e1.tar.xz drakx-backup-do-not-use-63e56c659ec455089815eaf3312d668fe60677e1.zip |
no need for defensive programming
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 24f498b27..2c779e9b4 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -549,7 +549,7 @@ sub install_urpmi { sub updateModulesFromFloppy { my ($o) = @_; - return if $::testing || !$o->{updatemodules}; + return if $::testing; fs::mount($o->{updatemodules}, "/floppy", "ext2", 0); foreach (glob_("$o->{prefix}/lib/modules/*")) { |