commit | 9faf9529f38e1b22550f4910ea863391bfa02436 | [log] [tgz] |
---|---|---|
author | José Fonseca <jfonseca@vmware.com> | Sat Apr 10 01:53:12 2010 +0100 |
committer | José Fonseca <jfonseca@vmware.com> | Sun Apr 11 17:17:34 2010 +0900 |
tree | 22749db1dae245cc6bda607e4ce898d8dc3b9b57 | |
parent | 146879284c6b844f35afe3a3ef3330726afbe8ac [diff] [blame] |
scons: Build glapi regardless of the dri option.
diff --git a/src/mesa/SConscript b/src/mesa/SConscript index 424232a..02614b9 100644 --- a/src/mesa/SConscript +++ b/src/mesa/SConscript
@@ -357,10 +357,9 @@ ) 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')