mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 00:56:44 +01:00
27 lines
684 B
Python
Executable File
27 lines
684 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Scons module."""
|
|
|
|
import os
|
|
import sys
|
|
|
|
SCONS_VERSION = os.environ.get('SCONS_VERSION', "3.1.2")
|
|
|
|
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 as import_err:
|
|
print("Could not import SCons from '%s'" % (SCONS_DIR))
|
|
print("ImportError:", import_err)
|
|
sys.exit(1)
|
|
|
|
SCons.Script.main()
|