projects
/
platform
/
upstream
/
ninja.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
49dd59d
)
windows bootstrap: clean up object files
author
Evan Martin
<martine@danga.com>
Wed, 1 Aug 2012 22:30:41 +0000
(15:30 -0700)
committer
Evan Martin
<martine@danga.com>
Fri, 10 Aug 2012 18:33:45 +0000
(11:33 -0700)
bootstrap.py
patch
|
blob
|
history
diff --git
a/bootstrap.py
b/bootstrap.py
index
ab03cf8
..
a5df22a
100755
(executable)
--- a/
bootstrap.py
+++ b/
bootstrap.py
@@
-108,4
+108,8
@@
run([sys.executable, 'configure.py'] + conf_args)
run(['./' + binary] + verbose)
os.unlink(binary)
run(['./' + binary] + verbose)
os.unlink(binary)
+if sys.platform.startswith('win32'):
+ for obj in glob.glob('*.obj'):
+ os.unlink(obj)
+
print 'Done!'
print 'Done!'