diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-02-20 11:10:50 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-02-20 11:10:50 +0000 |
commit | 8bd3be354d7c987ca7a3b027839cf328c71a4f52 (patch) | |
tree | eb5795f505b0175309e12e176c67ba48d35f7731 /gurpmi.addmedia | |
parent | b66e7bf8a7ea2c16b1b176eac9427653f866a785 (diff) | |
download | rpmdrake-8bd3be354d7c987ca7a3b027839cf328c71a4f52.tar rpmdrake-8bd3be354d7c987ca7a3b027839cf328c71a4f52.tar.gz rpmdrake-8bd3be354d7c987ca7a3b027839cf328c71a4f52.tar.bz2 rpmdrake-8bd3be354d7c987ca7a3b027839cf328c71a4f52.tar.xz rpmdrake-8bd3be354d7c987ca7a3b027839cf328c71a4f52.zip |
don't redo what ugtk2 already does for us
Diffstat (limited to 'gurpmi.addmedia')
-rwxr-xr-x | gurpmi.addmedia | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gurpmi.addmedia b/gurpmi.addmedia index 542e07e9..3920baf4 100755 --- a/gurpmi.addmedia +++ b/gurpmi.addmedia @@ -50,12 +50,7 @@ require_root_capability(); use rpmdrake; use Getopt::Long; -eval { require ugtk2; ugtk2->import(qw(:all)) }; -if ($@) { - print "This program cannot be run in console mode.\n"; - use POSIX qw(_exit); - _exit(0); #- skip ugtk2::END -} +use ugtk2 qw(:all); $::isStandalone = 1; my $fromfile; |