New submission from Hirokazu Yamamoto <ocean-c...@m2.ccsnet.ne.jp>: bzip2 project sometimes fails to build pyd file. This is because
(snip) nmake /nologo /f makefile.msc lib (snip) nmake /nologo /f makefile.msc clean is run by bzip2.vcproj, but "lib" command won't create bzip2.exe nor bzip2recover.exe, wheres "clean" will try to delete these files without checking their existence. Technically it is easy to fix this. (Replace "del ..." with if exists ... del ..... in bzip2-1.0.5/makefile.msc) But is it allowed to modify external project files? Thank you. ---------- components: Build messages: 115930 nosy: ocean-city priority: normal severity: normal status: open title: bzip2 build sometimes fails (VS8.0) versions: Python 2.7, Python 3.1, Python 3.2 _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue9810> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com