0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00
mongodb/buildscripts/__init__.py

9 lines
202 B
Python
Raw Normal View History

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