Skip Menu |

This queue is for tickets about the File-Copy-Recursive CPAN distribution.

Report information
The Basics
Id: 21351
Status: resolved
Priority: 0/
Queue: File-Copy-Recursive

People
Owner: Nobody in particular
Requestors: jclark [...] globalmoxie.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.25
Fixed in: 0.26



Subject: CopyLink eval dies if $SIG{__DIE__} has been set
The general issue is described here: http://perldoc.perl.org/functions/eval.html Suggested change for line 18 of version 0.25: our $CopyLink = eval { local $SIG{'__DIE__'}; symlink '',''; 1 } || 0; Many thanks for a very useful module! All best, Josh
From: DMUEY [...] cpan.org
On Wed Sep 06 13:05:56 2006, jclark@globalmoxie.com wrote: Show quoted text
> The general issue is described here: > http://perldoc.perl.org/functions/eval.html > > Suggested change for line 18 of version 0.25: > our $CopyLink = eval { local $SIG{'__DIE__'}; symlink '',''; 1 } || 0; > > Many thanks for a very useful module!
You're welcome, thanks for the suggestion. It will be in 0.26 hopefully later today.