[oe-commits] [openembedded-core] 03/17: grep: support Perl regular expression

git at git.openembedded.org git at git.openembedded.org
Mon Jan 22 23:28:33 UTC 2018


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 8023052653d44a8bbd3618ba700aa260e581036e
Author: Haiqing Bai <Haiqing.Bai at windriver.com>
AuthorDate: Mon Jan 22 16:46:10 2018 +0800

    grep: support Perl regular expression
    
    Supporting Perl regular expression is disabled with '--disable-perl-regexp'
    but the manpage of 'grep' shows the '-P' option and returns below error:
    "/bin/grep.grep -o -P 'PATTERN' file
     /bin/grep.grep: support for the -P option is not compiled into this \
                   --disable-perl-regexp binary"
    
    Signed-off-by: Haiqing Bai <Haiqing.Bai at windriver.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-extended/grep/grep_3.1.bb | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-extended/grep/grep_3.1.bb b/meta/recipes-extended/grep/grep_3.1.bb
index 05b6b93..71810dc 100644
--- a/meta/recipes-extended/grep/grep_3.1.bb
+++ b/meta/recipes-extended/grep/grep_3.1.bb
@@ -14,8 +14,6 @@ SRC_URI[sha256sum] = "db625c7ab3bb3ee757b3926a5cfa8d9e1c3991ad24707a83dde8a5ef2b
 
 inherit autotools gettext texinfo pkgconfig
 
-EXTRA_OECONF = "--disable-perl-regexp"
-
 # Fix "Argument list too long" error when len(TMPDIR) = 410
 acpaths = "-I ./m4"
 
@@ -36,6 +34,9 @@ do_install () {
 
 inherit update-alternatives
 
+PACKAGECONFIG ??= "pcre"
+PACKAGECONFIG[pcre] = "--enable-perl-regexp,--disable-perl-regexp,libpcre"
+
 ALTERNATIVE_PRIORITY = "100"
 
 ALTERNATIVE_${PN} = "grep egrep fgrep"

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


More information about the Openembedded-commits mailing list