diff options
author | Guido van Rossum <guido@python.org> | 1997-08-14 20:13:46 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-14 20:13:46 (GMT) |
commit | 77b300895c991062074fab84792cea4d5f4f627b (patch) | |
tree | e4d7eed8cf4b389a625818b93d6d01c60a785b94 | |
parent | 49b1226781c3f6d3ea0248328e77254d5af54ee2 (diff) | |
download | cpython-77b300895c991062074fab84792cea4d5f4f627b.zip cpython-77b300895c991062074fab84792cea4d5f4f627b.tar.gz cpython-77b300895c991062074fab84792cea4d5f4f627b.tar.bz2 |
Add XXX warning about fishy line
-rw-r--r-- | Tools/freeze/winmakemakefile.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/freeze/winmakemakefile.py b/Tools/freeze/winmakemakefile.py index 66c33e8..453bbff 100644 --- a/Tools/freeze/winmakemakefile.py +++ b/Tools/freeze/winmakemakefile.py @@ -13,6 +13,7 @@ def realwork(vars, files, target): print print "target =", target print "pythonhome =", vars['prefix'] + # XXX The following line is fishy and may need manual fixing print "pythonlib =", vars['exec_prefix'] + "/pcbuild/release/python15.lib" print "subsystem =", vars['subsystem'] print |