Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2008-10-19 17:51:52 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2008-10-19 17:51:52 +0400
commit4d4fd5687f54b6bdb0e95bdd71e5628486d557fb (patch)
tree03754216e808f4697fb1e742732643adc8b36eeb
parentf76a742dc0cab7b8502a20d012ed8f5e70981be6 (diff)
* small code change from Split to env.Glob()
-rw-r--r--source/blender/python/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/SConscript b/source/blender/python/SConscript
index 27dd510f944..1f0cbd2c86d 100644
--- a/source/blender/python/SConscript
+++ b/source/blender/python/SConscript
@@ -1,7 +1,7 @@
#!/usr/bin/python
Import ('env')
-sources = Split('BPY_interface.c BPY_menus.c') + env.Glob('api2_2x/*.c')
+sources = env.Glob('*.c') + env.Glob('api2_2x/*.c')
incs = 'api2_2x ../blenkernel ../nodes ../blenlib ../blenloader'
incs += ' ../render/extern/include ../radiosity/extern/include'