summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2009-04-08 11:54:23 +0000
committerThierry Vignaud <tv@mandriva.org>2009-04-08 11:54:23 +0000
commit51ceb10514e3a4bdfb315f5cdf18f9c59b68ea3e (patch)
tree4ff51e206e87a66a8cb01d7fc2e734563e2f7f55
parent92bea30b70696f9e1f6e68a037acf70ac48a5d99 (diff)
downloaddrakx-51ceb10514e3a4bdfb315f5cdf18f9c59b68ea3e.tar
drakx-51ceb10514e3a4bdfb315f5cdf18f9c59b68ea3e.tar.gz
drakx-51ceb10514e3a4bdfb315f5cdf18f9c59b68ea3e.tar.bz2
drakx-51ceb10514e3a4bdfb315f5cdf18f9c59b68ea3e.tar.xz
drakx-51ceb10514e3a4bdfb315f5cdf18f9c59b68ea3e.zip
(main) log where we segfaulted
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/install/install2.pm3
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 137205d66..e6a7d791a 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -4,6 +4,7 @@
files from network (thus fixing #48887)
o tell urpmi to read synthesis before adding supplementary network
media in order to be able to install the 'basesystem' package
+- log where we segfaulted
Version 12.25.1 - 07 April 2009
diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm
index 465c5ba42..2cd404c37 100644
--- a/perl-install/install/install2.pm
+++ b/perl-install/install/install2.pm
@@ -294,7 +294,8 @@ sub exitInstall {
sub main {
#- $SIG{__DIE__} = sub { warn "DIE " . backtrace() . "\n" };
$SIG{SEGV} = sub {
- my $msg = "segmentation fault: install crashed (maybe memory is missing?)"; log::l($msg);
+ my $msg = "segmentation fault: install crashed (maybe memory is missing?)\n" . backtrace();
+ log::l("$msg\n" . backtrace());
$o->ask_warn('', $msg);
setVirtual(1);
require install::steps_auto_install;