summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/standalone.pm')
-rw-r--r--perl-install/standalone.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm
index fdf659df9..7a9a8aa81 100644
--- a/perl-install/standalone.pm
+++ b/perl-install/standalone.pm
@@ -203,6 +203,7 @@ sub bug_handler {
# we want the full backtrace:
if ($is_signal) {
my $ctrace = c::C_backtrace();
+ $ctrace =~ s/0:.*(\d+:[^:]*Perl_sighandler)/\1/sig if $ctrace =~ /0:.*(\d+:[^:]*Perl_sighandler)/sig;
$error .= "\nGlibc's trace:\n$ctrace\n";
}
$error .= "Perl's trace:\n". common::backtrace() if $error;