- Fix handling of Action ojects (and other callables that don't match
our calling arguments) in construction variable expansions.
+ - On Win32, install scons.bat in the Python directory when installing
+ from setup.py. (The bdist_wininst installer was already doing this.)
+
From Clive Levinson:
- Make ParseConfig() recognize and add -mno-cygwin to $LINKFLAGS and
}
try:
- if sys.argv[1] == "bdist_wininst":
+ if sys.platform == 'win32' or sys.argv[1] == "bdist_wininst":
arguments['data_files'] = [('.', ["script/scons.bat"])]
except IndexError:
pass