From 9faf9529f38e1b22550f4910ea863391bfa02436 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Sat, 10 Apr 2010 01:53:12 +0100 Subject: [PATCH] scons: Build glapi regardless of the dri option. --- src/mesa/SConscript | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/mesa/SConscript b/src/mesa/SConscript index 424232a1d21..02614b92791 100644 --- a/src/mesa/SConscript +++ b/src/mesa/SConscript @@ -357,10 +357,9 @@ if env['platform'] != 'winddk': ) Export('mesa') - if not dri: - glapi = env.ConvenienceLibrary( - target = 'glapi', - source = glapi_sources, - ) - Export('glapi') + glapi = env.ConvenienceLibrary( + target = 'glapi', + source = glapi_sources, + ) + Export('glapi') -- 2.30.2