From 54db7f1b43b08f3bfd0ce28b24f8ed22e82282cf Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 25 Jun 2013 00:49:43 +0000 Subject: Buildbot: disable command length workaround for now, seems to give link errors. --- source/blender/freestyle/SConscript | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'source/blender/freestyle') diff --git a/source/blender/freestyle/SConscript b/source/blender/freestyle/SConscript index 2542bbd1ec6..cae04f8642c 100644 --- a/source/blender/freestyle/SConscript +++ b/source/blender/freestyle/SConscript @@ -78,11 +78,14 @@ sources = system_sources + image_sources + geometry_sources + scene_graph_source winged_edge_sources + view_map_sources + stroke_sources + \ application_sources + interface_sources -env.BlenderLib(libname="bf_freestyle", sources=sources, includes=Split(incs), - defines=defs, libtype=['core'], priority = [370] -) +if False: # gives link errors 'win' in env['OURPLATFORM']: + env.BlenderLib(libname="bf_freestyle_python", sources=python_sources, includes=Split(incs), + defines=defs, libtype=['core'], priority = [369] # bf_python is 361 + ) +else: + sources += python_sources -env.BlenderLib(libname="bf_freestyle_python", sources=python_sources, includes=Split(incs), - defines=defs, libtype=['core'], priority = [369] # bf_python is 361 +env.BlenderLib(libname="bf_freestyle", sources=sources, includes=Split(incs), + defines=defs, libtype=['core'], priority = [370] # bf_python is 361 ) -- cgit v1.2.3