[oe-commits] Roman I Khimov : perl 5.10.1: fix archlib(exp) and privlib(exp) vars in target configs

git version control git at git.openembedded.org
Thu Dec 30 18:02:34 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 3a75ce4f552d8d9fee1fc243e03ec107c311c646
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=3a75ce4f552d8d9fee1fc243e03ec107c311c646

Author: Roman I Khimov <khimov at altell.ru>
Date:   Wed Dec 29 23:52:31 2010 +0300

perl 5.10.1: fix archlib(exp) and privlib(exp) vars in target configs

These vars can be used to derive build flags for perl modules and thus should
point to build-time directories in staged configs.

Signed-off-by: Roman I Khimov <khimov at altell.ru>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks at gmail.com>

---

 recipes/perl/perl_5.10.1.bb |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/recipes/perl/perl_5.10.1.bb b/recipes/perl/perl_5.10.1.bb
index d8c374b..4e6bc33 100644
--- a/recipes/perl/perl_5.10.1.bb
+++ b/recipes/perl/perl_5.10.1.bb
@@ -5,7 +5,7 @@ LICENSE = "Artistic|GPLv1+"
 PRIORITY = "optional"
 # We need gnugrep (for -I)
 DEPENDS = "virtual/db perl-native grep-native"
-PR = "r18"
+PR = "r19"
 
 # 5.10.1 has Module::Build built-in
 PROVIDES += "libmodule-build-perl"
@@ -224,6 +224,13 @@ do_stage() {
         install config.sh ${STAGING_LIBDIR}/perl/
         # target configuration, used by native perl when cross-compiling
         install lib/Config_heavy.pl ${STAGING_LIBDIR_NATIVE}/perl/${PV}/Config_heavy-${TARGET_SYS}.pl
+	sed -r -i \
+		-e "s,^(archlib=).*$,\1'${STAGING_LIBDIR}/perl/${PV}'," \
+		-e "s,^(archlibexp=).*$,\1'${STAGING_LIBDIR}/perl/${PV}'," \
+		-e "s,^(privlib=).*$,\1'${STAGING_DATADIR}/perl/${PV}'," \
+		-e "s,^(privlibexp=).*$,\1'${STAGING_DATADIR}/perl/${PV}'," \
+		${STAGING_LIBDIR_NATIVE}/perl/${PV}/Config_heavy-${TARGET_SYS}.pl \
+		${STAGING_LIBDIR}/perl/config.sh
 	# target configuration
         install lib/Config.pm       ${STAGING_LIBDIR}/perl/${PV}/
 	install lib/ExtUtils/typemap ${STAGING_DATADIR}/perl/${PV}/ExtUtils/





More information about the Openembedded-commits mailing list