Lisa Roach added the comment:

I think this patch makes the proper fix, changed the lines:

    print("\t-rm -f *.obj")
    print("\t-rm -f $(target).exe")

to 

    print("\t-del /f *.obj")
    print("\t-del /f $(target).exe")

----------
keywords: +patch
nosy: +lisroach
Added file: http://bugs.python.org/file43999/rm_to_del.patch

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue27566>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to