diff options
author | Chia-I Wu <[email protected]> | 2010-04-26 12:47:07 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-05-07 10:41:10 +0800 |
commit | 73ded0624de66bc83ae990530febb129d950d04b (patch) | |
tree | 46be777b01e9a617312d7323db5000d523e4305c /src/mesa/SConscript | |
parent | 4d52a25326506f8a3e876ded029ff4db7749f8a9 (diff) |
glapi: Move assembly dispatchers back into glapi/.
Diffstat (limited to 'src/mesa/SConscript')
-rw-r--r-- | src/mesa/SConscript | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/SConscript b/src/mesa/SConscript index 7294cf9a32b..9cc5d493111 100644 --- a/src/mesa/SConscript +++ b/src/mesa/SConscript @@ -291,7 +291,7 @@ if env['platform'] != 'winddk': 'x86/read_rgba_span_x86.S', ] glapi_sources += [ - 'x86/glapi_x86.S', + 'glapi/glapi_x86.S', ] elif gcc and env['machine'] == 'x86_64': env.Append(CPPDEFINES = [ @@ -302,7 +302,7 @@ if env['platform'] != 'winddk': 'x86-64/xform4.S', ] glapi_sources += [ - 'x86-64/glapi_x86-64.S' + 'glapi/glapi_x86-64.S' ] elif gcc and env['machine'] == 'ppc': env.Append(CPPDEFINES = [ @@ -322,7 +322,7 @@ if env['platform'] != 'winddk': 'sparc/xform.S', ] glapi_sources += [ - 'sparc/glapi_sparc.S' + 'glapi/glapi_sparc.S' ] else: pass |