On Sat, Feb 16, 2002 at 05:05:33PM -0600, Craig A. Berry wrote:
 from miniperl during the build before File::Glob exists.
>
> I don't suppose there is a way to invoke at run-time the old-style
> glob (which for us is really internal, not external)?

You could instead just change that test so it only runs if File::Glob
is loaded.

    if( $INC{'File/Glob.pm'} ) {
        ...glob('0') test...
    }
    else {
        print "ok 8 # skip: File::Glob emulated Unixism\n";
    }


-- 

Michael G. Schwern   <[EMAIL PROTECTED]>    http://www.pobox.com/~schwern/
Perl Quality Assurance      <[EMAIL PROTECTED]>         Kwalitee Is Job One
What about MY need to be generalized and easily dismissed?
        http://www.goats.com/archive/000221.html

Reply via email to