summaryrefslogtreecommitdiffstats
path: root/src/glsl/SConscript
diff options
context:
space:
mode:
authorVinson Lee <[email protected]>2013-01-24 22:36:27 -0800
committerVinson Lee <[email protected]>2013-01-24 22:36:27 -0800
commit07e215f4ec80619b0eac26b8a5ec08572527c62a (patch)
treeefbeeeeae0a711890ff4062dcde20e4656930bc9 /src/glsl/SConscript
parent0974031f88c31458792864b2f3a46ff885607ab1 (diff)
scons: Add imports.c to builtin_compiler build.
Fixes build regression introduced by commit eac030e38e3cdd4ed4534516e3d3a50c8a372719. Signed-off-by: Vinson Lee <[email protected]> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=59835
Diffstat (limited to 'src/glsl/SConscript')
-rw-r--r--src/glsl/SConscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/glsl/SConscript b/src/glsl/SConscript
index 6981f041b39..c4ab97c1e08 100644
--- a/src/glsl/SConscript
+++ b/src/glsl/SConscript
@@ -59,6 +59,7 @@ else:
# Copy these files to avoid generation object files into src/mesa/program
env.Prepend(CPPPATH = ['#src/mesa/main'])
env.Command('hash_table.c', '#src/mesa/main/hash_table.c', Copy('$TARGET', '$SOURCE'))
+ env.Command('imports.c', '#src/mesa/main/imports.c', Copy('$TARGET', '$SOURCE'))
# Copy these files to avoid generation object files into src/mesa/program
env.Prepend(CPPPATH = ['#src/mesa/program'])
env.Command('prog_hash_table.c', '#src/mesa/program/prog_hash_table.c', Copy('$TARGET', '$SOURCE'))
@@ -68,6 +69,7 @@ else:
mesa_objs = env.StaticObject([
'hash_table.c',
+ 'imports.c',
'prog_hash_table.c',
'symbol_table.c',
])