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
path: root/intern
diff options
context:
space:
mode:
authorMartin Poirier <theeth@yahoo.com>2010-02-01 21:23:24 +0300
committerMartin Poirier <theeth@yahoo.com>2010-02-01 21:23:24 +0300
commitf591f34e808d05e5788e196099d5b94ce2bba3e5 (patch)
tree3e5b09008f570210421f993505f7d014d14fc702 /intern
parent0e84b50e9924125307645c08b6188f4e3174db80 (diff)
Wrong include path in revision 26519 (missing space when concatenating includes)
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript
index d68fd44540f..1269c631190 100644
--- a/intern/ghost/SConscript
+++ b/intern/ghost/SConscript
@@ -57,7 +57,7 @@ else:
if env['BF_GHOST_DEBUG']:
defs.append('BF_GHOST_DEBUG')
-incs = '. ../string #extern/glew/include #source/blender/imbuf #source/blender/makesdna' + env['BF_OPENGL_INC']
+incs = '. ../string #extern/glew/include #source/blender/imbuf #source/blender/makesdna ' + env['BF_OPENGL_INC']
if window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross', 'win64-vc'):
incs = env['BF_WINTAB_INC'] + ' ' + incs
env.BlenderLib ('bf_ghost', sources, Split(incs), defines=defs, libtype=['intern','player'], priority = [40,15] )