blob: 8c7b9448c51b91790cdabcc3ed0e8a27582b064c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/usr/bin/env python2
"""Scons module."""
from __future__ import print_function
import os
import sys
SCONS_VERSION = os.environ.get('SCONS_VERSION', "2.5.0")
MONGODB_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
SCONS_DIR = os.path.join(MONGODB_ROOT, 'src', 'third_party', 'scons-' + SCONS_VERSION,
'scons-local-' + SCONS_VERSION)
if not os.path.exists(SCONS_DIR):
print("Could not find SCons in '%s'" % (SCONS_DIR))
sys.exit(1)
sys.path = [SCONS_DIR] + sys.path
try:
import SCons.Script
except ImportError:
print("Could not find SCons in '%s'" % (SCONS_DIR))
sys.exit(1)
SCons.Script.main()
|