From: Tom Zanussi Date: Thu, 28 Jun 2012 21:03:27 +0000 (-0500) Subject: perl: add @STAGINGDIR@ for config.sh substitions X-Git-Tag: 2015-4~10120 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=cc594be0877b2a6616453c402db0a58ef265bc8d;p=openembedded-core.git perl: add @STAGINGDIR@ for config.sh substitions For some config.sh substitions, we'd like to be able to use STAGING_DIR_HOST; add @STAGINGDIR@ to allow for that. Signed-off-by: Tom Zanussi --- diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb b/meta/recipes-devtools/perl/perl_5.14.2.bb index a50fedb8d5..3ba12236a8 100644 --- a/meta/recipes-devtools/perl/perl_5.14.2.bb +++ b/meta/recipes-devtools/perl/perl_5.14.2.bb @@ -147,6 +147,7 @@ do_configure() { sed -i -e 's,@DESTDIR@,${prefix},g' \ -e 's,@ARCH@-thread-multi,,g' \ -e 's,@ARCH@,${TARGET_ARCH}-${TARGET_OS},g' \ + -e 's,@STAGINGDIR@,${STAGING_DIR_HOST},g' \ -e "s%/usr/include%${STAGING_INCDIR}%g" \ -e 's,/usr/lib/,${libdir}/,g' \ -e 's,/usr/,${exec_prefix}/,g' \