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:
authorMichel Selten <michel@mselten.demon.nl>2004-04-11 17:09:10 +0400
committerMichel Selten <michel@mselten.demon.nl>2004-04-11 17:09:10 +0400
commitf2db6734442a9d1766f827a0deded1712a202225 (patch)
tree2b3563ddb233ad96b6d67cf26129db3a344792ac /SConstruct
parentb7f718fb2c3bd45b4340452fcdc461a24abd3d6a (diff)
SCons update
* False was used in a comparisson. Only recent Python versions support this. Changed it to 0.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 748a297569e..b98ebdeed00 100644
--- a/SConstruct
+++ b/SConstruct
@@ -11,7 +11,7 @@ root_build_dir = '..' + os.sep + 'build' + os.sep + sys.platform + os.sep
# don't want to put scons-generated .sconsign files in the source tree, but in
# the root_build_dir, we have to create that dir ourselves before SCons tries
# to access/create the file containing .sconsign data.
-if os.path.isdir (root_build_dir) == False:
+if os.path.isdir (root_build_dir) == 0:
os.makedirs (root_build_dir)
# User configurable options file. This can be controlled by the user by running