diff options
author | William Deegan <bill@baddogconsulting.com> | 2024-07-06 03:18:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-06 03:18:57 (GMT) |
commit | b51ea227d892c073b06f68d178972e75de20364e (patch) | |
tree | 38d21b77215272f7b40c9bc5957301e5a8d4bd0a /SCons/Script/Main.py | |
parent | cd8952b63a583f412760350273ceef13763d881c (diff) | |
parent | b2f2be195fc1671a024a5d8c12f1d9d26cf4cf8c (diff) | |
download | SCons-b51ea227d892c073b06f68d178972e75de20364e.zip SCons-b51ea227d892c073b06f68d178972e75de20364e.tar.gz SCons-b51ea227d892c073b06f68d178972e75de20364e.tar.bz2 |
Merge pull request #4567 from Repiteo/scsub-pdb
Add `SCsub` to known SConscript names
Diffstat (limited to 'SCons/Script/Main.py')
-rw-r--r-- | SCons/Script/Main.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/SCons/Script/Main.py b/SCons/Script/Main.py index a5f8f42..4588345 100644 --- a/SCons/Script/Main.py +++ b/SCons/Script/Main.py @@ -86,7 +86,11 @@ KNOWN_SCONSCRIPTS = [ "Sconstruct", "sconstruct", "SConscript", + "Sconscript", "sconscript", + "SCsub", # Uncommon alternative to SConscript + "Scsub", + "scsub", ] # Global variables |