diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-12-09 00:52:32 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-12-09 00:52:32 +0000 |
commit | d59b27d5fcc346d96072ed0edb88cda0223be084 (patch) | |
tree | f605bc19591d3cf23d372a5ace6c70fbe367a620 /perl-install/standalone/XFdrake | |
parent | 1934b3123c81c2ccb425626aa61ed29e38780ddf (diff) | |
download | drakx-d59b27d5fcc346d96072ed0edb88cda0223be084.tar drakx-d59b27d5fcc346d96072ed0edb88cda0223be084.tar.gz drakx-d59b27d5fcc346d96072ed0edb88cda0223be084.tar.bz2 drakx-d59b27d5fcc346d96072ed0edb88cda0223be084.tar.xz drakx-d59b27d5fcc346d96072ed0edb88cda0223be084.zip |
no_comment
Diffstat (limited to 'perl-install/standalone/XFdrake')
-rwxr-xr-x | perl-install/standalone/XFdrake | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/standalone/XFdrake b/perl-install/standalone/XFdrake index 28864acc1..f4d4cb263 100755 --- a/perl-install/standalone/XFdrake +++ b/perl-install/standalone/XFdrake @@ -22,6 +22,7 @@ use lib qw(/usr/lib/libDrakX); use interactive; use Xconfigurator; use Xconfig; +use c; local $_ = join '', @ARGV; @@ -35,8 +36,8 @@ $::skiptest = /--skiptest/; $::testing = /--testing/; $::isStandalone = 1; -my $in = vnew interactive; +my $in = vnew interactive('su'); Xconfigurator::main('', Xconfig::getinfo(), $in, 0, sub { `urpmi --auto XFree86-$_[0]` }); -exec 'true' if ref($in) =~ /gtk/; #- workaround for perl-GTK +$in->exit(0); |