it's an error if the specified entry doesn't exist. The default
behavior is now to silently do nothing if it doesn't exist.
+ - Package up the new Platform/darwin.py, mistakenly left out of 0.96.
+
RELEASE 0.96 - Wed, 18 Aug 2004 13:36:40 +0000
SCons/Platform/__init__.py
SCons/Platform/aix.py
SCons/Platform/cygwin.py
+SCons/Platform/darwin.py
SCons/Platform/hpux.py
SCons/Platform/irix.py
SCons/Platform/os2.py
test = TestSCons.TestSCons()
-platforms = ['cygwin', 'irix', 'os2', 'posix', 'win32']
+platforms = [
+ 'aix',
+ 'cygwin',
+ 'darwin',
+ 'hpux',
+ 'irix',
+ 'os2',
+ 'posix',
+ 'sunos',
+ 'win32'
+]
for platform in platforms:
test.write('SConstruct', """