diff options
author | Vinson Lee <vlee@vmware.com> | 2010-07-16 12:34:22 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-07-16 12:34:22 -0700 |
commit | 5cf0789f91354b00c055825c2764b14ce1ba09a9 (patch) | |
tree | aba52e5e2b964ca479d1a54ddefa6827bd4e5891 | |
parent | 5862b6ed6196572be0462da913d9e45b4d05f240 (diff) |
scons: Fix Cygwin build.
The Cygwin SCons build needed several file names to be fully qualified.
-rw-r--r-- | src/gallium/auxiliary/SConscript | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/SConscript b/src/gallium/auxiliary/SConscript index 7e06cc0c76ef..926b2651dab9 100644 --- a/src/gallium/auxiliary/SConscript +++ b/src/gallium/auxiliary/SConscript @@ -32,8 +32,8 @@ env.CodeGenerate( env.CodeGenerate( target = 'util/u_format_table.c', - script = 'util/u_format_table.py', - source = ['util/u_format.csv'], + script = '#src/gallium/auxiliary/util/u_format_table.py', + source = ['#src/gallium/auxiliary/util/u_format.csv'], command = 'python $SCRIPT $SOURCE > $TARGET' ) @@ -45,7 +45,7 @@ env.CodeGenerate( ) env.Depends('util/u_format_table.c', [ - 'util/u_format_parse.py', + '#src/gallium/auxiliary/util/u_format_parse.py', 'util/u_format_pack.py', ]) |