diff options
author | José Fonseca <[email protected]> | 2012-01-26 17:25:30 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2012-01-26 17:29:38 +0000 |
commit | 1d1033926dc8deb6e22b918889ec4be65637e4bf (patch) | |
tree | a22f8046aa7bd4900649778d975842028ba19b22 /src/mapi/shared-glapi | |
parent | b7a81b6e511c03876c852d049befa50079c74ec5 (diff) |
scons: Remove references to u_thread.c
For future reference: always run "git grep" on refactorings.
Diffstat (limited to 'src/mapi/shared-glapi')
-rw-r--r-- | src/mapi/shared-glapi/SConscript | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mapi/shared-glapi/SConscript b/src/mapi/shared-glapi/SConscript index f17a4dd892a..0097c1c79ec 100644 --- a/src/mapi/shared-glapi/SConscript +++ b/src/mapi/shared-glapi/SConscript @@ -8,8 +8,14 @@ Import('*') def mapi_objects(env, printer, mode): """Return mapi objects built for the given printer and mode.""" mapi_sources = { - 'glapi': ['entry.c', 'mapi_glapi.c', 'stub.c', 'table.c', - 'u_current.c', 'u_execmem.c', 'u_thread.c'], + 'glapi': [ + 'entry.c', + 'mapi_glapi.c', + 'stub.c', + 'table.c', + 'u_current.c', + 'u_execmem.c', + ], 'bridge': ['entry.c'], } mapi_defines = { |