| Index: scripts/tools/dump_master_cfg.py
|
| diff --git a/scripts/tools/dump_master_cfg.py b/scripts/tools/dump_master_cfg.py
|
| index 50364d20d9c4e9181256ac07a8a1944cd949fe04..54d4420087da971b8658f0223edf12aceedae1f2 100755
|
| --- a/scripts/tools/dump_master_cfg.py
|
| +++ b/scripts/tools/dump_master_cfg.py
|
| @@ -15,6 +15,15 @@ import json
|
| import os
|
| import sys
|
|
|
| +SCRIPTS_DIR = os.path.abspath(
|
| + os.path.join(os.path.dirname(__file__), os.pardir))
|
| +if not SCRIPTS_DIR in sys.path:
|
| + sys.path.insert(0, SCRIPTS_DIR)
|
| +
|
| +from common import env
|
| +
|
| +env.Install()
|
| +
|
| from common import master_cfg_utils
|
| from master.factory.build_factory import BuildFactory
|
|
|
|
|