From patchwork Thu May 3 01:55:24 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [CONSOLIDATED, PULL, 05/36] mesa: add missing flex-native/bison-native deps Date: Thu, 03 May 2012 01:55:24 -0000 From: Saul Wold X-Patchwork-Id: 26883 Message-Id: <84d3e84f2bc635058749cc3a0f1d7ab4d7e48bbf.1336008687.git.sgw@linux.intel.com> To: openembedded-core@lists.openembedded.org From: Christopher Larson A quick glance at configure.ac shows that both are required to build mesa, but we were relying on their being built implicitly via other recipes in the dependency chain. Make it explicit. Signed-off-by: Christopher Larson --- meta/recipes-graphics/mesa/mesa-common.inc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/recipes-graphics/mesa/mesa-common.inc b/meta/recipes-graphics/mesa/mesa-common.inc index 1c376b7..f697e67 100644 --- a/meta/recipes-graphics/mesa/mesa-common.inc +++ b/meta/recipes-graphics/mesa/mesa-common.inc @@ -19,7 +19,7 @@ PE = "2" PROTO_DEPS = "xf86driproto glproto" LIB_DEPS = "virtual/libx11 libxext libxxf86vm libxdamage libxfixes libxml2-native" -DEPENDS = "makedepend-native python-native ${PROTO_DEPS} ${LIB_DEPS}" +DEPENDS = "makedepend-native python-native flex-native bison-native ${PROTO_DEPS} ${LIB_DEPS}" PROVIDES = "virtual/libgl"