in reply to Re^2: Installing a Perl module to an embedded target with different Perl version
in thread Installing a Perl module to an embedded target with different Perl version

Remember the system boots from a filesystem image.
So, where is this filesystem image coming from? I've created images for embedded systems as well (but they didn't have the resources to be able to run perl); putting files there was a matter of copying - it wasn't "scp to box" but "cp to mounted image".
  • Comment on Re^3: Installing a Perl module to an embedded target with different Perl version

Replies are listed 'Best First'.
Re^4: Installing a Perl module to an embedded target with different Perl version
by wanna_code_perl (Friar) on May 18, 2010 at 22:09 UTC

    Quoting from the original question node:

    If I manually copy the files to one of the directories in @INC, it works fine, but I have many such modules to install, so would very much like to be able to run Makefile.PL and make install in my system build script to stick the modules into the right location, rather than hacking together my own install script or hacking @INC.

    More specifically, the whole point of my question was to avoid having to hack together a reinvented "cp to mounted image" solution, but instead let Makefile.PL do the right thing (which I now know how to do).