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

#!/usr/bin/perl -- use strict; use warnings; use Spreadsheet::WriteExcel; use Parse::RecDescent; use Spreadsheet::WriteExcel::Formula;## BINGO require Parse::RecDescent; print $_,$/ for %INC;

Replies are listed 'Best First'.
Re^4: Parse::RecDescent in Cava Packager
by samuelalfred (Sexton) on Feb 27, 2009 at 14:09 UTC
    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"
Re^4: Parse::RecDescent in Cava Packager
by samuelalfred (Sexton) on Mar 02, 2009 at 07:23 UTC
    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!