diff options
author | William Deegan <bill@baddogconsulting.com> | 2014-03-09 07:20:04 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2014-03-09 07:20:04 (GMT) |
commit | beefe8e65cb5a7c0584b467547325d9d56735ae1 (patch) | |
tree | 84670aebf23a0a3c0b353fb86489b04d0a17ef2c | |
parent | e775b746964849812ca7cf1cee8ecee4bfa02864 (diff) | |
download | SCons-beefe8e65cb5a7c0584b467547325d9d56735ae1.zip SCons-beefe8e65cb5a7c0584b467547325d9d56735ae1.tar.gz SCons-beefe8e65cb5a7c0584b467547325d9d56735ae1.tar.bz2 |
Updated comment to indicate new order of priority for loading SCons python packages
-rw-r--r-- | src/script/scons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/scons.py b/src/script/scons.py index 7de0b10..3638fa7 100644 --- a/src/script/scons.py +++ b/src/script/scons.py @@ -73,7 +73,7 @@ libs = [] if "SCONS_LIB_DIR" in os.environ: libs.append(os.environ["SCONS_LIB_DIR"]) -# - running from source takes priority (since 2.3.2) +# - running from source takes priority (since 2.3.2), excluding SCONS_LIB_DIR settings script_path = os.path.abspath(os.path.dirname(__file__)) source_path = os.path.join(script_path, '..', 'engine') libs.append(source_path) |