[oe-commits] Hongxu Jia : perl_5.14.2.bb:fix errors if configure is reattempted

git at git.openembedded.org git at git.openembedded.org
Tue Apr 23 12:00:32 UTC 2013


Module: openembedded-core.git
Branch: danny
Commit: 4cb190a7527300bcaed34bb6f65329c5d6425966
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=4cb190a7527300bcaed34bb6f65329c5d6425966

Author: Hongxu Jia <hongxu.jia at windriver.com>
Date:   Mon Mar 11 14:47:31 2013 +0800

perl_5.14.2.bb:fix errors if configure is reattempted

If configure of perl is reattempted it currently fails as it tries to edit
files outside ${S}. Chaging from ${WORKDIR} to ${S} avoids this issue
and allows rebuilds to work.

Cherry-pick commit f2f0a1aa489f9e6e4414fa758d3dd09a950a106c

Signed-off-by: Hongxu Jia <hongxu.jia at windriver.com>

---

 meta/recipes-devtools/perl/perl_5.14.2.bb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb b/meta/recipes-devtools/perl/perl_5.14.2.bb
index 1c52055..9681f54 100644
--- a/meta/recipes-devtools/perl/perl_5.14.2.bb
+++ b/meta/recipes-devtools/perl/perl_5.14.2.bb
@@ -169,7 +169,7 @@ do_configure() {
 			;;
 	esac
         # These are strewn all over the source tree
-        for foo in `grep -I --exclude="*.patch" --exclude="*.diff" --exclude="*.pod" --exclude="README*" -m1 "/usr/include/.*\.h" ${WORKDIR}/* -r -l` ${S}/utils/h2xs.PL ; do
+        for foo in `grep -I --exclude="*.patch" --exclude="*.diff" --exclude="*.pod" --exclude="README*" -m1 "/usr/include/.*\.h" ${S}/* -r -l` ${S}/utils/h2xs.PL ; do
             echo Fixing: $foo
             sed -e 's|\([ "^'\''I]\+\)/usr/include/|\1${STAGING_INCDIR}/|g' -i $foo
         done





More information about the Openembedded-commits mailing list