[oe-commits] [openembedded-core] 21/25: perl: Don't change /usr/include references in docs to sysroot paths

git at git.openembedded.org git at git.openembedded.org
Fri Aug 18 11:38:59 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit cb2dfe5627df2ff235b37622260484841f39af17
Author: Ooi Cinly <cinly.ooi at intel.com>
AuthorDate: Wed Aug 16 09:18:26 2017 +0800

    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 at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-devtools/perl/perl_5.24.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/perl/perl_5.24.1.bb b/meta/recipes-devtools/perl/perl_5.24.1.bb
index 95d9694..1e1d4f5 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

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list