Files
mongo/buildscripts/__init__.py

9 lines
202 B
Python
Raw Normal View History

2009-08-07 16:03:11 -04:00
import hacks_ubuntu
2009-09-03 14:30:39 -04:00
import os;
def findHacks( un ):
2009-09-03 14:40:08 -04:00
if un[0] == 'Linux' and ( os.path.exists( "/etc/debian_version" ) or un[3].find( "Ubuntu" ) >= 0 ):
return hacks_ubuntu
return None