in reply to Installing a Perl module to an embedded target with different Perl version
? Alternatively, do something like this on your build system:$ scp -r /path/to/root/user/share/perl/5.10.0 remote:/usr/lib/perl5/si +te_perl/5.8.8
Or build a perl5.8.8 on your build system, which has the same @INC as the one on the embedded system, and use that to build your modules. Then you can deal with non-pure Perl modules as well.$ mkdir -p /usr/lib/perl5/site_perl/5.8.8 $ ln -s /usr/lib/perl5/site_perl/5.8.8 /path/to/root/usr/share/perl/5. +10.0
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Installing a Perl module to an embedded target with different Perl version
by wanna_code_perl (Friar) on May 18, 2010 at 16:11 UTC | |
by JavaFan (Canon) on May 18, 2010 at 20:20 UTC | |
by wanna_code_perl (Friar) on May 18, 2010 at 22:09 UTC |