diff options
author | Tom Zanussi <tom.zanussi@intel.com> | 2012-06-28 16:06:05 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-04 14:54:11 +0100 |
commit | b647d2ab84ff0eb94f4b6a1b731d74aaf8c60b9d (patch) | |
tree | f57ff499dccc9385f72b1c703bf4f87872ab5cc9 /meta/recipes-devtools/perl | |
parent | cc594be0877b2a6616453c402db0a58ef265bc8d (diff) | |
download | openembedded-core-b647d2ab84ff0eb94f4b6a1b731d74aaf8c60b9d.tar.gz openembedded-core-b647d2ab84ff0eb94f4b6a1b731d74aaf8c60b9d.tar.bz2 openembedded-core-b647d2ab84ff0eb94f4b6a1b731d74aaf8c60b9d.zip |
perl: use @STAGINGDIR@ in config.sh
archlibexp in the snapshotted config.sh needs to be relative to
staging dir - it gets generated into Config_heavy.pl as one of the
settings and is used by ExtUtils::Embed during the target build.
The substituted setting doesn't make it into the target package
because it's removed by perl_package_preprocess() before packaging.
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Diffstat (limited to 'meta/recipes-devtools/perl')
-rw-r--r-- | meta/recipes-devtools/perl/perl-5.14.2/config.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/perl/perl-5.14.2/config.sh b/meta/recipes-devtools/perl/perl-5.14.2/config.sh index b3e2d432c4..75dc2d03fd 100644 --- a/meta/recipes-devtools/perl/perl-5.14.2/config.sh +++ b/meta/recipes-devtools/perl/perl-5.14.2/config.sh @@ -68,7 +68,7 @@ api_version='14' api_versionstring='5.14.0' ar='ar' archlib='/usr/lib/perl5/5.14.2/@ARCH@-thread-multi' -archlibexp='/usr/lib/perl5/5.14.2/@ARCH@-thread-multi' +archlibexp='@STAGINGDIR@/usr/lib/perl5/5.14.2/@ARCH@-thread-multi' archname64='' archname='@ARCH@-thread-multi' archobjs='' |