http://qs321.pair.com?node_id=522731

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

Hello Monks, I've received a strange erros: File::Glob object version 1.04 does not match bootstrap parameter 1.02 at c:/Perl/lib/DynaLoader.pm I'm trying to glob this:
my $diff_list_file = glob(".\\.temp_workspace\\*-binaries-*patch*_Diff +List.txt");
Thanks
  • Comment on Has anyone had a this error: File::Glob object version 1.04 does not match bootstrap parameter 1.02 at c:/Perl/lib/DynaLoader.pm
  • Download Code

Replies are listed 'Best First'.
Re: Has anyone had a this error: File::Glob object version 1.04 does not match bootstrap parameter 1.02 at c:/Perl/lib/DynaLoader.pm
by brian_d_foy (Abbot) on Jan 12, 2006 at 16:37 UTC

    The usually means that something went out-of-sync. Which version of perl are you using? File::Glob 1.04 comes with perl5.8.7, and that's the first time that version of File::Glob shows up in the core. File::Glob 1.02 came with perls 5.8.1 to 5.8.4. Did you somehow let one pollinate the other?

    --
    brian d foy <brian@stonehenge.com>
    Subscribe to The Perl Review
      I guess that could have happened, I updated an older version of ActivePerl with the latest one. I would have assumed ( my bad, you know what they say about assuming :) ) the update would have overwritten the files. I'll try and delete the directory and reinstall ActivePerl. Thanks