Files
mongo/buildscripts/__init__.py
Mathias Stearn 38a924346d Make Archlinux use spidermonkey rather than xulrunner
(cherry picked from commit 4922004527)
2010-02-03 16:13:50 -05:00

10 lines
225 B
Python

import hacks_ubuntu
import os;
def findHacks( un ):
if un[0] == 'Linux' and (os.path.exists("/etc/debian_version") or
un[3].find("Ubuntu") >= 0):
return hacks_ubuntu
return None