summaryrefslogtreecommitdiffstats
path: root/perl-install/do_pkgs.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-05-23 18:28:00 +0000
committerThierry Vignaud <tv@mageia.org>2012-05-23 18:28:00 +0000
commit168fa3e917a715bb0a139c03e699595ee5829228 (patch)
treeb4b8c9f2f63b9dd0357f93ec9ccf9f182f18299f /perl-install/do_pkgs.pm
parent0af7db0742bcb9f7297c170e1e9040eb3a2e9763 (diff)
downloaddrakx-168fa3e917a715bb0a139c03e699595ee5829228.tar
drakx-168fa3e917a715bb0a139c03e699595ee5829228.tar.gz
drakx-168fa3e917a715bb0a139c03e699595ee5829228.tar.bz2
drakx-168fa3e917a715bb0a139c03e699595ee5829228.tar.xz
drakx-168fa3e917a715bb0a139c03e699595ee5829228.zip
don't call urpmi with --gui, this is useless
Diffstat (limited to 'perl-install/do_pkgs.pm')
-rw-r--r--perl-install/do_pkgs.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/do_pkgs.pm b/perl-install/do_pkgs.pm
index 79b862149..dd9e589b6 100644
--- a/perl-install/do_pkgs.pm
+++ b/perl-install/do_pkgs.pm
@@ -241,7 +241,7 @@ sub install {
my $_wait = $do->in && $do->in->wait_message(N("Please wait"), N("Installing packages..."));
$do->in->suspend if $do->in;
log::explanations("installing packages @l");
- $ret = system('urpmi', '--gui', @options) == 0;
+ $ret = system('urpmi', @options) == 0;
$do->in->resume if $do->in;
}
$ret;