Hi Lee Anne,
I ran into this problem a couple of days ago. The solution I came up with was to modify the Makefile.PL script so that is does not catch the exception being thrown by MakeMaker.pm. See below for the code I commented out in Makefile.PL:
root@dh10n # diff Makefile.PL Makefile.orig.PL
83,87c83,87
< #$SIG{__DIE__} = sub {
< # print STDERR "\n ** ERROR: ", @_;
< # print STDERR " Run perl Makefile.PL SWISHHELP for options\n\n";
< # exit 1;
< #};
---
> $SIG{__DIE__} = sub {
> print STDERR "\n ** ERROR: ", @_;
> print STDERR " Run perl Makefile.PL SWISHHELP for options\n\n";
> exit 1;
> };
Hope this helps.
James Muir
Information Systems - Data Warehouse
Dartmouth-Hitchcock Medical Center
603-653-3288
_______________________________________________
Users mailing list
Users@lists.swish-e.org
http://lists.swish-e.org/listinfo/users
Received on Tue Nov 18 12:18:47 2008