mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 09:32:11 +02:00
PERLHOSTLIB var is used to build target perl. It let perl use the native perl .so module files at the time of compilation of target perl. These changes to perl make the PERLHOSTLIB variable also useful for building perl modules to use native .so perl module. (From OE-Core rev: f4d51e63c0df777bbcbe9ad160eb3ba41ae74c6e) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
499 B
Diff
18 lines
499 B
Diff
Upstream-Status:Inappropriate [embedded specific]
|
|
|
|
Index: perl-5.12.2/installperl
|
|
===================================================================
|
|
--- perl-5.12.2.orig/installperl
|
|
+++ perl-5.12.2/installperl
|
|
@@ -3,8 +3,8 @@
|
|
BEGIN {
|
|
require 5.004;
|
|
chdir '..' if !-d 'lib' and -d '../lib';
|
|
- @INC = 'lib';
|
|
- $ENV{PERL5LIB} = 'lib';
|
|
+# @INC = 'lib';
|
|
+# $ENV{PERL5LIB} = 'lib';
|
|
|
|
# This needs to be at BEGIN time, before any use of Config
|
|
require './install_lib.pl';
|