Now that the new pathfind code is working,

...enable it by default in 1.7 (but not 1.8 betas).
This commit is contained in:
Eric S. Raymond 2010-01-26 10:31:54 +00:00
parent 7713168c57
commit 2dbc96bef0

View file

@ -39,9 +39,8 @@ except KeyError:
# Build-control options
#
# FIXME: Experimental code enabled by default in unstable (odd minor version).
#experimental_default = (int(version.split(".")[1]) % 2) == 1
experimental_default = False
# Experimental code is enabled by default in unstable (odd minor version).
experimental_default = (int(version.split(".")[1]) % 2) == 1
opts = Variables('.scons-option-cache')