From 91c32b5e286c9aef88b6e20d069f0eb13e227bf6 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 26 Sep 2007 10:52:34 +0000 Subject: when unable to access X11, just print the backtrace on the console --- perl-install/standalone/drakbug | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'perl-install/standalone') diff --git a/perl-install/standalone/drakbug b/perl-install/standalone/drakbug index 0e3cb1b5c..210ace916 100755 --- a/perl-install/standalone/drakbug +++ b/perl-install/standalone/drakbug @@ -24,6 +24,7 @@ use lib qw(/usr/lib/libDrakX); use any; use standalone; use common; +BEGIN { $::no_ugtk_init = 1 } use mygtk2 qw(gtknew); use ugtk2 qw(:all); use Config; @@ -42,6 +43,13 @@ foreach (@ARGV) { /^--incident$/ and do { $incident = 1; $prog = splice(@ARGV, $i, 1) }; } +if (!check_for_xserver) { + print("Cannot be run in console mode.\n"); + print N("The \"%s\" program has crashed with the following error:", $prog) . "\n$error\n" if $error; +} + +mygtk2::init(); + $ugtk2::wm_icon = 'drakbug-16'; my $window = ugtk2->new(N("Mandriva Linux Bug Report Tool"), center => 1); $window->{rwindow}->set_border_width(5); -- cgit v1.2.1