in reply to Re: Parse::RecDescent in Cava Packager
in thread Parse::RecDescent in Cava Packager

Hmm, I can't understand what I might be doing wrong. Would it be possible for me to get the code you tested just to see if that will work for me? If you have some short code snippet you are willing to share... otherwise thank your anyway for you response!
  • Comment on Re^2: Parse::RecDescent in Cava Packager

Replies are listed 'Best First'.
Re^3: Parse::RecDescent in Cava Packager
by Anonymous Monk on Feb 27, 2009 at 13:33 UTC
    #!/usr/bin/perl -- use strict; use warnings; use Spreadsheet::WriteExcel; use Parse::RecDescent; use Spreadsheet::WriteExcel::Formula;## BINGO require Parse::RecDescent; print $_,$/ for %INC;
      No, this doesn't work for me. Get an error message saying (to start with):

      Can't locate feature.pm in @INC at SelfLoader.pm line 3.

      Did you change any settings before you did the build? Please tell me exactly what you did from that you started Cava Packager to that the executable file was done.

      Thanks!
        for perl 5.8 (in my path), i created new project, added file.pl to scripts, added to executable, and build
        for perl 5.10 exactly the same, except I edited "perl library"/"module search paths" to point to my 5.10 install, and add feature to "explicit includes"
      Thanks. Will check this against my workflow.

      UPDATE: Added "feature" in the explicit include list which did the trick. Now it's working like a charm, thanks!