From a7fce7e16a936eb048fedb9b30adc592bcb2c657 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Mon, 2 May 2005 09:37:04 +0000 Subject: [PATCH] Fix [perl #35162] $SIG{__DIE__} = 'IGNORE' is base.pm is illegal p4raw-id: //depot/perl@24360 --- lib/base.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/base.pm b/lib/base.pm index 832b6a4..001914b 100644 --- a/lib/base.pm +++ b/lib/base.pm @@ -2,7 +2,7 @@ package base; use strict 'vars'; use vars qw($VERSION); -$VERSION = '2.06'; +$VERSION = '2.07'; # constant.pm is slow sub SUCCESS () { 1 } @@ -78,7 +78,7 @@ sub import { unless defined ${$base.'::VERSION'}; } else { - local $SIG{__DIE__} = 'IGNORE'; + local $SIG{__DIE__}; eval "require $base"; # Only ignore "Can't locate" errors from our eval require. # Other fatal errors (syntax etc) must be reported. -- 2.7.4