diff options
author | Tom Stellard <[email protected]> | 2011-04-30 12:26:15 -0700 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2011-04-30 12:35:06 -0700 |
commit | 7edf7d1169eb1efe5f24abc9e5e3f4ef04057c3b (patch) | |
tree | 24bf0b59ece023d8ee9af65d8e2aedc542aec7a1 | |
parent | 899b786b193ec4ee3eadd7c9c33c610cc115a3fe (diff) |
r300g: Fix scons build
Broken by the dependency on ralloc introduced by
fe622bac0c1b5b9f2a9fcf9f35b51232a06bea42
-rwxr-xr-x | src/mesa/drivers/dri/r300/compiler/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/r300/compiler/SConscript b/src/mesa/drivers/dri/r300/compiler/SConscript index bebb9ebe623..9931537492e 100755 --- a/src/mesa/drivers/dri/r300/compiler/SConscript +++ b/src/mesa/drivers/dri/r300/compiler/SConscript @@ -3,6 +3,7 @@ Import('*') env = env.Clone() env.Append(CPPPATH = '#/include') env.Append(CPPPATH = '#/src/mesa') +env.Append(CPPPATH = '#/src/glsl') # temporary fix env['CFLAGS'] = str(env['CFLAGS']).replace('-Werror=declaration-after-statement', '') |