Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Why this error message comes?

by madtoperl (Hermit)
on Aug 02, 2006 at 14:29 UTC ( [id://565234]=perlquestion: print w/replies, xml ) Need Help??

madtoperl has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: Why this error message comes?
by Corion (Patriarch) on Aug 02, 2006 at 14:34 UTC

    I assume you are converting your Perl script to an .exe file using PAR.

    The way PAR works is that it injects a code reference into @INC, which trips you up when you iterate over it. A solution to eliminating this warning would be to make sure you only process plain scalars in your File::Find subroutine:

    foreach my $dir (grep { ! ref } @INC) {
    A reply falls below the community's threshold of quality. You may see it by logging in.
Re: Why this error message comes?
by gopalr (Priest) on Aug 03, 2006 at 07:47 UTC

    Hi,

    which software are you using to convert?

    Check Version of Perl and perl2exe.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://565234]
Approved by Corion
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-03-29 01:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found