diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/do_pkgs.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index cd381b16d..51dd3b9ed 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,4 @@ +- fix gurpmi path (#38679) - draksound: o enable to set 5.1 channels (#38796) - scannerdrake: fix undefined variable $in (#36387, #37039) 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...")); |