diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-12-19 19:52:22 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-12-19 19:52:22 +0000 |
commit | 7c3cf8706543cd8f1b7582e41c336a1235936ce8 (patch) | |
tree | 6fccd6bf9ab875a483c8ad69f40aea7498378f1b | |
parent | 4dcb37e299c6ee95fe06d638b48f1f6020043882 (diff) | |
download | drakx-7c3cf8706543cd8f1b7582e41c336a1235936ce8.tar drakx-7c3cf8706543cd8f1b7582e41c336a1235936ce8.tar.gz drakx-7c3cf8706543cd8f1b7582e41c336a1235936ce8.tar.bz2 drakx-7c3cf8706543cd8f1b7582e41c336a1235936ce8.tar.xz drakx-7c3cf8706543cd8f1b7582e41c336a1235936ce8.zip |
do not show useless "ignore" button when requesting root password through kdesu
-rw-r--r-- | perl-install/common.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/common.pm b/perl-install/common.pm index 546a9f7a2..e7b21c05f 100644 --- a/perl-install/common.pm +++ b/perl-install/common.pm @@ -258,7 +258,7 @@ sub require_root_capability() { return unless $>; # we're already root if (check_for_xserver()) { if (fuzzy_pidofs(qr/\bkwin\b/) > 0) { - exec("kdesu", "-c", "$0 @ARGV") or die N("kdesu missing"); + exec("kdesu", "--ignorebutton","-c", "$0 @ARGV") or die N("kdesu missing"); } } exec { 'consolehelper' } $0, @ARGV or die N("consolehelper missing"); |