From 67228abee66b7b3e3cac4fa35c29dcf42d517574 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Mon, 9 Apr 2012 18:00:28 -0500 Subject: [PATCH] mesa: add missing flex-native/bison-native deps 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. (From OE-Core rev: 4fb71999fad9e844850831caf2431ee8731787db) Signed-off-by: Christopher Larson Signed-off-by: Richard Purdie --- meta/recipes-graphics/mesa/mesa-common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-graphics/mesa/mesa-common.inc b/meta/recipes-graphics/mesa/mesa-common.inc index 1c376b7733..f697e673e4 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"