From: Rafael Garcia-Suarez Date: Mon, 2 May 2005 09:37:04 +0000 (+0000) Subject: Fix [perl #35162] $SIG{__DIE__} = 'IGNORE' is base.pm is illegal X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a7fce7e16a936eb048fedb9b30adc592bcb2c657;p=p5sagit%2Fp5-mst-13.2.git Fix [perl #35162] $SIG{__DIE__} = 'IGNORE' is base.pm is illegal p4raw-id: //depot/perl@24360 --- 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.