summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbootstrap.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bootstrap.py b/bootstrap.py
index ab03cf8..a5df22a 100755
--- a/bootstrap.py
+++ b/bootstrap.py
@@ -108,4 +108,8 @@ run([sys.executable, 'configure.py'] + conf_args)
run(['./' + binary] + verbose)
os.unlink(binary)
+if sys.platform.startswith('win32'):
+ for obj in glob.glob('*.obj'):
+ os.unlink(obj)
+
print 'Done!'