From: Tom Zanussi Date: Thu, 28 Jun 2012 21:03:27 +0000 (-0500) Subject: perl: add @STAGINGDIR@ for config.sh substitions X-Git-Tag: rev_ivi_2015_02_04~16626 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=62a9369a1721f808a24b520068393a119b06d8ae;p=scm%2Fbb%2Ftizen-distro.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. (From OE-Core rev: cc594be0877b2a6616453c402db0a58ef265bc8d) Signed-off-by: Tom Zanussi Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb b/meta/recipes-devtools/perl/perl_5.14.2.bb index a50fedb..3ba1223 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' \