aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOoi Cinly <cinly.ooi@intel.com>2017-08-16 09:18:26 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-18 12:35:58 +0100
commitcb2dfe5627df2ff235b37622260484841f39af17 (patch)
tree80425be70ccfd662b40e9b49a389fed1b80dee63
parent04db02138e363898e040e33557f1296e8a43c3fd (diff)
downloadopenembedded-core-contrib-cb2dfe5627df2ff235b37622260484841f39af17.tar.gz
perl: Don't change /usr/include references in docs to sysroot paths
do_configure() will no longer convert references to /usr/include into /path/to/recipes-sysroot/usr/include for the file "Porting/Glossary". [YOCTO #11243] Signed-off-by: Ooi Cinly <cinly.ooi@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/perl/perl_5.24.1.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/perl/perl_5.24.1.bb b/meta/recipes-devtools/perl/perl_5.24.1.bb
index 95d9694005..1e1d4f50fc 100644
--- a/meta/recipes-devtools/perl/perl_5.24.1.bb
+++ b/meta/recipes-devtools/perl/perl_5.24.1.bb
@@ -171,7 +171,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" ${S}/* -r -l` ${S}/utils/h2xs.PL ; do
+ for foo in `grep -I --exclude="*.patch" --exclude="*.diff" --exclude="*.pod" --exclude="README*" --exclude="Glossary" -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