summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorHaiqing Bai <Haiqing.Bai@windriver.com>2018-01-22 16:46:10 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-01-23 23:43:45 +0000
commit9611659a8ced35b43bd6dfd8d0e5ff7ce2fa5138 (patch)
treeaa2a9fc2c6386de54cceb301b5cdba75f7600335 /meta/recipes-extended
parentcc0db5714fff61d85a443586aaab22372dae027a (diff)
downloadpoky-9611659a8ced35b43bd6dfd8d0e5ff7ce2fa5138.tar.gz
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" (From OE-Core rev: 8023052653d44a8bbd3618ba700aa260e581036e) Signed-off-by: Haiqing Bai <Haiqing.Bai@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r--meta/recipes-extended/grep/grep_3.1.bb5
1 files 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 05b6b93949..71810dc655 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
14 14
15inherit autotools gettext texinfo pkgconfig 15inherit autotools gettext texinfo pkgconfig
16 16
17EXTRA_OECONF = "--disable-perl-regexp"
18
19# Fix "Argument list too long" error when len(TMPDIR) = 410 17# Fix "Argument list too long" error when len(TMPDIR) = 410
20acpaths = "-I ./m4" 18acpaths = "-I ./m4"
21 19
@@ -36,6 +34,9 @@ do_install () {
36 34
37inherit update-alternatives 35inherit update-alternatives
38 36
37PACKAGECONFIG ??= "pcre"
38PACKAGECONFIG[pcre] = "--enable-perl-regexp,--disable-perl-regexp,libpcre"
39
39ALTERNATIVE_PRIORITY = "100" 40ALTERNATIVE_PRIORITY = "100"
40 41
41ALTERNATIVE_${PN} = "grep egrep fgrep" 42ALTERNATIVE_${PN} = "grep egrep fgrep"