From f2db6734442a9d1766f827a0deded1712a202225 Mon Sep 17 00:00:00 2001 From: Michel Selten Date: Sun, 11 Apr 2004 13:09:10 +0000 Subject: [PATCH] SCons update * False was used in a comparisson. Only recent Python versions support this. Changed it to 0. --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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