SCons update

* False was used in a comparisson. Only recent Python versions support this.
  Changed it to 0.
This commit is contained in:
Michel Selten 2004-04-11 13:09:10 +00:00
parent b7f718fb2c
commit f2db673444

@ -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