diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-05-07 03:03:49 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-05-07 03:03:49 (GMT) |
commit | 7c4bc9a79c20f2ac1e8c5f25957fbcad87e7ff56 (patch) | |
tree | f4326da926e1953bfa926c14f99ac96e512b4d02 /scripts | |
parent | 2cb467d557992c72bb1832dc8eef8b0ad8cc8993 (diff) | |
download | SCons-7c4bc9a79c20f2ac1e8c5f25957fbcad87e7ff56.zip SCons-7c4bc9a79c20f2ac1e8c5f25957fbcad87e7ff56.tar.gz SCons-7c4bc9a79c20f2ac1e8c5f25957fbcad87e7ff56.tar.bz2 |
[ci skip] Fixed to use new SCons dir location
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/scons-configure-cache.py | 2 | ||||
-rwxr-xr-x | scripts/scons.py | 2 | ||||
-rw-r--r-- | scripts/sconsign.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/scons-configure-cache.py b/scripts/scons-configure-cache.py index 62cab56..da0e848 100644 --- a/scripts/scons-configure-cache.py +++ b/scripts/scons-configure-cache.py @@ -67,7 +67,7 @@ if "SCONS_LIB_DIR" in os.environ: libs.append(os.environ["SCONS_LIB_DIR"]) # running from source takes 2nd priority (since 2.3.2), following SCONS_LIB_DIR -source_path = os.path.join(script_path, os.pardir, 'src', 'engine') +source_path = os.path.join(script_path, os.pardir) if os.path.isdir(source_path): libs.append(source_path) diff --git a/scripts/scons.py b/scripts/scons.py index 1dc6c78..9af9897 100755 --- a/scripts/scons.py +++ b/scripts/scons.py @@ -61,7 +61,7 @@ if "SCONS_LIB_DIR" in os.environ: libs.append(os.environ["SCONS_LIB_DIR"]) # running from source takes 2nd priority (since 2.3.2), following SCONS_LIB_DIR -source_path = os.path.join(script_path, os.pardir, 'src', 'engine') +source_path = os.path.join(script_path, os.pardir) if os.path.isdir(source_path): libs.append(source_path) diff --git a/scripts/sconsign.py b/scripts/sconsign.py index 493bd40..0edd05c 100644 --- a/scripts/sconsign.py +++ b/scripts/sconsign.py @@ -59,7 +59,7 @@ if "SCONS_LIB_DIR" in os.environ: libs.append(os.environ["SCONS_LIB_DIR"]) # running from source takes 2nd priority (since 2.3.2), following SCONS_LIB_DIR -source_path = os.path.join(script_path, os.pardir, 'src', 'engine') +source_path = os.path.join(script_path, os.pardir) if os.path.isdir(source_path): libs.append(source_path) |