From 40ac1f6e58ca6b6c4c49fe582c30390ba4012945 Mon Sep 17 00:00:00 2001 From: Evan Martin Date: Wed, 1 Aug 2012 15:30:41 -0700 Subject: [PATCH] windows bootstrap: clean up object files --- bootstrap.py | 4 ++++ 1 file changed, 4 insertions(+) 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!' -- 2.7.4