diff options
author | Dmitry Eremin-Solenikov <dmitry_eremin@mentor.com> | 2015-04-15 12:09:28 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-19 13:34:42 +0100 |
commit | 32d23513c85a00778e3c54522a78033d53648238 (patch) | |
tree | b067fa2d919bd93f0765e5831db8949b10ed65b9 /meta/recipes-extended | |
parent | fa391a518ae8fc99e6eea3ca742a89ae39067796 (diff) | |
download | poky-32d23513c85a00778e3c54522a78033d53648238.tar.gz |
groff: fix RDEPENDS
RDEPENDS_${PN} is appended with "sed" and on the following line it's fixed
to just "perl". Merge both lines to have correct RDEPENDS.
(From OE-Core rev: 5519d245dcf698b57949d29fc777928952a3f992)
Signed-off-by: Dmitry Eremin-Solenikov <dmitry_eremin@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/groff/groff_1.22.3.bb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/recipes-extended/groff/groff_1.22.3.bb b/meta/recipes-extended/groff/groff_1.22.3.bb index 7955a5cf08..dac0fdfe30 100644 --- a/meta/recipes-extended/groff/groff_1.22.3.bb +++ b/meta/recipes-extended/groff/groff_1.22.3.bb | |||
@@ -16,9 +16,7 @@ SRC_URI[sha256sum] = "3a48a9d6c97750bfbd535feeb5be0111db6406ddb7bb79fc680809cda6 | |||
16 | 16 | ||
17 | DEPENDS = "groff-native" | 17 | DEPENDS = "groff-native" |
18 | DEPENDS_class-native = "" | 18 | DEPENDS_class-native = "" |
19 | RDEPENDS_${PN} += "sed" | 19 | RDEPENDS_${PN} += "perl sed" |
20 | |||
21 | RDEPENDS_${PN} = "perl" | ||
22 | 20 | ||
23 | inherit autotools texinfo | 21 | inherit autotools texinfo |
24 | 22 | ||