summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2014-03-08 23:20:04 -0800
committerWilliam Deegan <bill@baddogconsulting.com>2014-03-08 23:20:04 -0800
commit6d3b1d815e7cd8a2b6b706fb57db3954ba3bbc5e (patch)
tree84670aebf23a0a3c0b353fb86489b04d0a17ef2c
parent4e4788f0e37f9d3176b2a9feda058cef551f9e80 (diff)
downloadscons-6d3b1d815e7cd8a2b6b706fb57db3954ba3bbc5e.tar.gz
Updated comment to indicate new order of priority for loading SCons python packages
-rw-r--r--src/script/scons.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/scons.py b/src/script/scons.py
index 7de0b103..3638fa75 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)