From: Paul Eggleton Date: Mon, 18 Jan 2016 11:18:32 +0000 (+1300) Subject: recipetool: create: force GL libraries to virtual/* X-Git-Tag: 2016-4~1515 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=e1ac0c45b27ded9962edaf34597f827d0b41ba82;p=openembedded-core.git recipetool: create: force GL libraries to virtual/* We want to specify dependencies on virtual/* rather than whatever library is selected in the current configuration. Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- diff --git a/scripts/lib/recipetool/create.py b/scripts/lib/recipetool/create.py index dab917faac..1601a7f8c4 100644 --- a/scripts/lib/recipetool/create.py +++ b/scripts/lib/recipetool/create.py @@ -84,6 +84,11 @@ class RecipeHandler(object): else: raise + # Some overrides - these should be mapped to the virtual + RecipeHandler.recipelibmap['GL'] = 'virtual/libgl' + RecipeHandler.recipelibmap['EGL'] = 'virtual/egl' + RecipeHandler.recipelibmap['GLESv2'] = 'virtual/libgles2' + @staticmethod def load_headermap(d): '''Build up lib headerfile->recipe mapping'''