summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-21 10:53:01 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-21 19:04:34 +0000
commitf2f0a1aa489f9e6e4414fa758d3dd09a950a106c (patch)
tree9feffe5a676c4ac36e672d1d0e2c9fcee073bf1e
parentd1e680916e0b33da80a2fee077784062db1b318e (diff)
downloadpoky-f2f0a1aa489f9e6e4414fa758d3dd09a950a106c.tar.gz
perl: 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. (From OE-Core rev: 1b66c30eb6085aedce118ce086efbd2e562d0d6c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/perl/perl_5.14.2.bb2
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 f924ebd6d0..e875c1f574 100644
--- a/meta/recipes-devtools/perl/perl_5.14.2.bb
+++ b/meta/recipes-devtools/perl/perl_5.14.2.bb
@@ -168,7 +168,7 @@ do_configure() {
168 ;; 168 ;;
169 esac 169 esac
170 # These are strewn all over the source tree 170 # These are strewn all over the source tree
171 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 171 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
172 echo Fixing: $foo 172 echo Fixing: $foo
173 sed -e 's|\([ "^'\''I]\+\)/usr/include/|\1${STAGING_INCDIR}/|g' -i $foo 173 sed -e 's|\([ "^'\''I]\+\)/usr/include/|\1${STAGING_INCDIR}/|g' -i $foo
174 done 174 done