diff options
author | Abdur Rehman <abdur_rehman@mentor.com> | 2015-07-23 20:20:48 +0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-25 14:41:42 +0100 |
commit | 98b5364baea1da08ded1e5b9b2fb553ec34322d3 (patch) | |
tree | c5567884879d465c45a218832b9869a6fa4ec7cf /meta/recipes-extended | |
parent | f5f6748b757b7480efcae4fe345615990f907f81 (diff) | |
download | poky-98b5364baea1da08ded1e5b9b2fb553ec34322d3.tar.gz |
sed: rrec on locale-base-ru-ru, not rdep
This locale package isn't guaranteed to exist, depending on the value of
GLIBC_GENERATE_LOCALES.
The value of GLIBC_GENERATE_LOCALES can be specified to not contain
locale-base-ru-ru, thus resulting in unsatisfied dependency. Its better
to remove hardcoded dependency upon locale-base-ru-ru in favor of a
recommendation, as this locale isn't always available depending upon the
value of GLIBC_GENERATE_LOCALES.
(From OE-Core rev: f9ec9c89956810f21955819677e92588540a4748)
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Abdur Rehman <abdur_rehman@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/sed/sed_4.2.2.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/sed/sed_4.2.2.bb b/meta/recipes-extended/sed/sed_4.2.2.bb index a1e34832ad..5da3355ee5 100644 --- a/meta/recipes-extended/sed/sed_4.2.2.bb +++ b/meta/recipes-extended/sed/sed_4.2.2.bb | |||
@@ -15,7 +15,8 @@ SRC_URI[md5sum] = "4111de4faa3b9848a0686b2f260c5056" | |||
15 | SRC_URI[sha256sum] = "fea0a94d4b605894f3e2d5572e3f96e4413bcad3a085aae7367c2cf07908b2ff" | 15 | SRC_URI[sha256sum] = "fea0a94d4b605894f3e2d5572e3f96e4413bcad3a085aae7367c2cf07908b2ff" |
16 | 16 | ||
17 | inherit autotools texinfo update-alternatives gettext ptest | 17 | inherit autotools texinfo update-alternatives gettext ptest |
18 | RDEPENDS_${PN}-ptest += "make locale-base-ru-ru ${PN}" | 18 | RDEPENDS_${PN}-ptest += "make ${PN}" |
19 | RRECOMMENDS_${PN}-ptest += "locale-base-ru-ru" | ||
19 | 20 | ||
20 | EXTRA_OECONF = "--disable-acl \ | 21 | EXTRA_OECONF = "--disable-acl \ |
21 | ${@bb.utils.contains('PTEST_ENABLED', '1', '--enable-regex-tests', '', d)}" | 22 | ${@bb.utils.contains('PTEST_ENABLED', '1', '--enable-regex-tests', '', d)}" |