summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-08-10 10:14:35 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-08-10 10:14:35 +0000
commitd4c893538028d1b445d135ea0bb79a98275d75dc (patch)
treea589514f2d25a0b13ac5bdf59c346c875fcf746f /perl-install/diskdrake
parentcdf1741197fb5c0376400362e5200838493ad14f (diff)
downloaddrakx-backup-do-not-use-d4c893538028d1b445d135ea0bb79a98275d75dc.tar
drakx-backup-do-not-use-d4c893538028d1b445d135ea0bb79a98275d75dc.tar.gz
drakx-backup-do-not-use-d4c893538028d1b445d135ea0bb79a98275d75dc.tar.bz2
drakx-backup-do-not-use-d4c893538028d1b445d135ea0bb79a98275d75dc.tar.xz
drakx-backup-do-not-use-d4c893538028d1b445d135ea0bb79a98275d75dc.zip
no {fs_type} doesn't mean the type invalid
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r--perl-install/diskdrake/interactive.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index 148a0f1bf..809b7095d 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -1028,7 +1028,7 @@ sub check_type {
$in->ask_warn('', formatError($err));
return;
}
- if ($::isStandalone) {
+ if ($::isStandalone && $type->{fs_type}) {
fs::format::check_package_is_installed($in->do_pkgs, $type->{fs_type}) or return;
}
1;