]> code.ossystems Code Review - openembedded-core.git/commitdiff
nasm: nasm has a build dependency on groff-native
authorAmy Fong <amy.fong@windriver.com>
Wed, 18 Jul 2012 17:39:22 +0000 (13:39 -0400)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 18 Jul 2012 21:22:52 +0000 (22:22 +0100)
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.

Signed-off-by: Amy Fong <amy.fong@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/nasm/nasm_2.10.01.bb

index 8feaad43f46bdf8595d2e0145057c6611fea3df5..28644628e57257760abcef4ce2cddc0f827695f0 100644 (file)
@@ -26,3 +26,5 @@ do_install() {
 }
 
 BBCLASSEXTEND = "native"
+
+DEPENDS = "groff-native"