repo.or.cz
/
vapoursynth-svn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix things on case-insensitive file systems.
[vapoursynth-svn.git]
/
bootstrap.py
blob
1437e14da63a21243c95d6d11eb4fdb2a05744bd
1
#!/usr/bin/env python
2
3
import
os
,
stat
,
urllib2
4
5
f
=
urllib2
.
urlopen
(
'http://waf.googlecode.com/files/waf-1.7.11'
)
6
7
with
open
(
'waf'
,
'wb'
)
as
waf
:
8
waf
.
write
(
f
.
read
())
9
10
os
.
chmod
(
'waf'
,
os
.
stat
(
'waf'
).
st_mode | stat
.
S_IXUSR
)