summaryrefslogtreecommitdiffstats
path: root/perl-install/do_pkgs.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-03-12 13:10:54 +0000
committerThierry Vignaud <tv@mandriva.org>2008-03-12 13:10:54 +0000
commit3399bb433c44191e52445e38601470c53b0fcd7b (patch)
treed0f2501750b16392270fa91fb946e7612e5278e6 /perl-install/do_pkgs.pm
parentb0ae2c5aafbb19a5d2113fec2619168d97b65227 (diff)
downloaddrakx-backup-do-not-use-3399bb433c44191e52445e38601470c53b0fcd7b.tar
drakx-backup-do-not-use-3399bb433c44191e52445e38601470c53b0fcd7b.tar.gz
drakx-backup-do-not-use-3399bb433c44191e52445e38601470c53b0fcd7b.tar.bz2
drakx-backup-do-not-use-3399bb433c44191e52445e38601470c53b0fcd7b.tar.xz
drakx-backup-do-not-use-3399bb433c44191e52445e38601470c53b0fcd7b.zip
(install) fix gurpmi path (#38679)
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 3fbeca631..a6e4c4a26 100644
--- a/perl-install/do_pkgs.pm
+++ b/perl-install/do_pkgs.pm
@@ -210,7 +210,7 @@ sub install {
my @options = ('--allow-medium-change', '--auto', '--no-verify-rpm', '--expect-install', @l);
my $ret;
- if (check_for_xserver() && -x '/usr/sbin/gurpmi') {
+ if (check_for_xserver() && -x '/usr/bin/gurpmi') {
$ret = system('gurpmi', @options) == 0;
} else {
my $_wait = $do->in && $do->in->wait_message(N("Please wait"), N("Installing packages..."));