Fix things on case-insensitive file systems.
[vapoursynth-svn.git] / bootstrap.py
blob1437e14da63a21243c95d6d11eb4fdb2a05744bd
1 #!/usr/bin/env python
3 import os, stat, urllib2
5 f = urllib2.urlopen('http://waf.googlecode.com/files/waf-1.7.11')
7 with open('waf', 'wb') as waf:
8 waf.write(f.read())
10 os.chmod('waf', os.stat('waf').st_mode | stat.S_IXUSR)