diff options
Diffstat (limited to 'perl-install/standalone.pm')
-rw-r--r-- | perl-install/standalone.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm index 2dd530254..fdf659df9 100644 --- a/perl-install/standalone.pm +++ b/perl-install/standalone.pm @@ -201,8 +201,11 @@ sub bug_handler { } # we want the full backtrace: - $error .= "\n" if $is_signal; - $error .= common::backtrace() if $error; + if ($is_signal) { + my $ctrace = c::C_backtrace(); + $error .= "\nGlibc's trace:\n$ctrace\n"; + } + $error .= "Perl's trace:\n". common::backtrace() if $error; my $progname = $0; |