in reply to Parse::RecDescent in Cava Packager

Just installed cava, loads use Spreadsheet::WriteExcel; use Parse::RecDescent; no problem. You must be doing something wrong :(

Replies are listed 'Best First'.
Re^2: Parse::RecDescent in Cava Packager
by Anonymous Monk on Feb 27, 2009 at 12:39 UTC
    I was right. Add Parse::RecDescent to the EXPLICIT EXCLUDE LIST and it won't include it. You don't even get a warning that a conflict exists (thats a bug). I'll stick with par.
      Why is this bad? If you add it to explicit EXCLUDES it shouldn't be included, right? I've added it to explicit INCLUDES and it's still not included. That's wrong!
Re^2: Parse::RecDescent in Cava Packager
by samuelalfred (Sexton) on Feb 27, 2009 at 12:47 UTC
    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!
      #!/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!
        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!