]> code.ossystems Code Review - openembedded-core.git/commitdiff
grep: support Perl regular expression
authorHaiqing Bai <Haiqing.Bai@windriver.com>
Mon, 22 Jan 2018 08:46:10 +0000 (16:46 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 22 Jan 2018 23:25:47 +0000 (23:25 +0000)
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@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-extended/grep/grep_3.1.bb

index 05b6b939499b517026c71e60bbb7edd6b35e629c..71810dc65504d3d9c5ff400a97886f29869a51c5 100644 (file)
@@ -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"