diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2014-12-29 16:28:21 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-31 08:14:19 +0000 |
commit | 48894789ca67a86227c0ce793a3ca41e12591409 (patch) | |
tree | 82748cf1e59786a57a093d8fa93b28a7a06fe3d4 /meta/recipes-extended | |
parent | 8bd9b201e2a51b561d2a38def8665cfb5ae93657 (diff) | |
download | poky-48894789ca67a86227c0ce793a3ca41e12591409.tar.gz |
diffutils & diffstat: fix up EXTRA_OECONF
The following line is meant to be in diffutils but it was added to
diffstat by accident. The commit message which introduced this line
says that it's for diffutils.
EXTRA_OECONF += "--without-libsigsegv-prefix"
This patch fixes this problem.
(From OE-Core rev: a27a6f93d6add381e001c38cd24c9575a04d4fa5)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/diffutils/diffutils_3.3.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-extended/diffutils/diffutils_3.3.bb b/meta/recipes-extended/diffutils/diffutils_3.3.bb index a467f20aa4..b708962447 100644 --- a/meta/recipes-extended/diffutils/diffutils_3.3.bb +++ b/meta/recipes-extended/diffutils/diffutils_3.3.bb | |||
@@ -7,6 +7,8 @@ SRC_URI = "${GNU_MIRROR}/diffutils/diffutils-${PV}.tar.xz \ | |||
7 | file://run-ptest \ | 7 | file://run-ptest \ |
8 | " | 8 | " |
9 | 9 | ||
10 | EXTRA_OECONF += "--without-libsigsegv-prefix" | ||
11 | |||
10 | do_configure_prepend () { | 12 | do_configure_prepend () { |
11 | # Need to remove gettext macros with weird mix of versions | 13 | # Need to remove gettext macros with weird mix of versions |
12 | for i in codeset.m4 gettext_gl.m4 intlmacosx.m4 inttypes-pri.m4 lib-ld_gl.m4 lib-prefix_gl.m4 po_gl.m4 ssize_t.m4 wchar_t.m4 wint_t.m4; do | 14 | for i in codeset.m4 gettext_gl.m4 intlmacosx.m4 inttypes-pri.m4 lib-ld_gl.m4 lib-prefix_gl.m4 po_gl.m4 ssize_t.m4 wchar_t.m4 wint_t.m4; do |