[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [26522] trunk/blender/intern/ghost/ SConscript: Wrong include path in revision 26519 ( missing space when concatenating includes)

Martin Poirier theeth at yahoo.com
Mon Feb 1 19:23:24 CET 2010


Revision: 26522
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=26522
Author:   theeth
Date:     2010-02-01 19:23:24 +0100 (Mon, 01 Feb 2010)

Log Message:
-----------
Wrong include path in revision 26519 (missing space when concatenating includes)

Revision Links:
--------------
    http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=26519

Modified Paths:
--------------
    trunk/blender/intern/ghost/SConscript

Modified: trunk/blender/intern/ghost/SConscript
===================================================================
--- trunk/blender/intern/ghost/SConscript	2010-02-01 17:46:19 UTC (rev 26521)
+++ trunk/blender/intern/ghost/SConscript	2010-02-01 18:23:24 UTC (rev 26522)
@@ -57,7 +57,7 @@
 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] ) 





More information about the Bf-blender-cvs mailing list