summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/indices
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-03-27 19:13:21 +0000
committerJosé Fonseca <jfonseca@vmware.com>2009-03-27 19:13:21 +0000
commitec30d1b2e5738264ca2ab2ce23d9fce2b9c7a2ce (patch)
treebb6ec3fd84f85ea6ada6784fcb05c171f5f0768a /src/gallium/auxiliary/indices
parentc97e5e1fc157ca5876241ee16c520d924535b4f0 (diff)
mesa: Use the python executable from sys.executable.
From Ramesh Dharan <rrdharan@vmware.com>
Diffstat (limited to 'src/gallium/auxiliary/indices')
-rw-r--r--src/gallium/auxiliary/indices/SConscript6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/indices/SConscript b/src/gallium/auxiliary/indices/SConscript
index e5f7ee9484..712e215534 100644
--- a/src/gallium/auxiliary/indices/SConscript
+++ b/src/gallium/auxiliary/indices/SConscript
@@ -1,17 +1,19 @@
Import('*')
+from sys import executable as python_cmd
+
env.CodeGenerate(
target = 'u_indices_gen.c',
script = 'u_indices_gen.py',
source = [],
- command = 'python $SCRIPT > $TARGET'
+ command = python_cmd + ' $SCRIPT > $TARGET'
)
env.CodeGenerate(
target = 'u_unfilled_gen.c',
script = 'u_unfilled_gen.py',
source = [],
- command = 'python $SCRIPT > $TARGET'
+ command = python_cmd + ' $SCRIPT > $TARGET'
)
indices = env.ConvenienceLibrary(