From patchwork Wed Jul 18 17:39:22 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: nasm: nasm has a build dependency on groff-native Date: Wed, 18 Jul 2012 17:39:22 -0000 From: Amy Fong X-Patchwork-Id: 32423 Message-Id: <20120718173922.GA20427@windriver.com> To: openembedded-core@lists.openembedded.org 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 --- nasm_2.07.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-devtools/nasm/nasm_2.07.bb b/meta/recipes-devtools/nasm/nasm_2.07.bb index fc2d531..d3e3f5b 100644 --- a/meta/recipes-devtools/nasm/nasm_2.07.bb +++ b/meta/recipes-devtools/nasm/nasm_2.07.bb @@ -27,3 +27,5 @@ do_install() { } BBCLASSEXTEND = "native" + +DEPENDS = "groff-native"