diff options
author | Amy Fong <amy.fong@windriver.com> | 2012-07-18 13:39:22 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-18 22:24:41 +0100 |
commit | 7b573543fc1ebc35e854c3fc3a5969d61abcae7e (patch) | |
tree | 3066d175560153583249692c509b48cdbd116643 /meta/recipes-devtools | |
parent | 3e89b62a4783604550731b8846f8d9147a8f5d5c (diff) | |
download | poky-7b573543fc1ebc35e854c3fc3a5969d61abcae7e.tar.gz |
nasm: nasm has a build dependency on groff-native
nasm has a build dependency on groff-native
In one incident, there was a case where nasm-native compile phase failed
with the following:
+troff: can't find `DESC' file
+troff: fatal error: sorry, I can't continue
During this, groff-native was in the sysroot install phase.
To remedy this, adding groff-native in nasm's dependency list.
(From OE-Core rev: cd108a55ea58501e91923f348edca9ba736933c7)
Signed-off-by: Amy Fong <amy.fong@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/nasm/nasm_2.10.01.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/nasm/nasm_2.10.01.bb b/meta/recipes-devtools/nasm/nasm_2.10.01.bb index 8feaad43f4..28644628e5 100644 --- a/meta/recipes-devtools/nasm/nasm_2.10.01.bb +++ b/meta/recipes-devtools/nasm/nasm_2.10.01.bb | |||
@@ -26,3 +26,5 @@ do_install() { | |||
26 | } | 26 | } |
27 | 27 | ||
28 | BBCLASSEXTEND = "native" | 28 | BBCLASSEXTEND = "native" |
29 | |||
30 | DEPENDS = "groff-native" | ||