On Sun, Aug 31, 2008 at 3:43 PM, Joe McMahon <[EMAIL PROTECTED]> wrote: >> I really meant you can die on missing non-perl perequisites (e.g. a >> library, a binary, a database, etc.). > > Yeah, I do that for GraphViz::Data::Structure (for graphviz) - and I still > get FAILs. So how does one get round that?
You have: if (!$dot_version) { die "You must install the graphviz package..."; } You need: if (!$dot_version) { warn "You must install the graphviz package..." and exit 0; } -- David