summaryrefslogtreecommitdiffstats
path: root/SCons/__main__.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2020-05-06 19:01:37 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2020-05-06 19:01:37 (GMT)
commit783dff487bbe940ace7349fa46d6e32b4d0a4705 (patch)
tree3a31d995290257836d26af19b9ec378d3a3ac398 /SCons/__main__.py
parent37f745c6bc5a818f1a2fd423ac5e483bb2f6370f (diff)
downloadSCons-783dff487bbe940ace7349fa46d6e32b4d0a4705.zip
SCons-783dff487bbe940ace7349fa46d6e32b4d0a4705.tar.gz
SCons-783dff487bbe940ace7349fa46d6e32b4d0a4705.tar.bz2
Reorganize the repo. Moved src/engine/SCons to ./SCons to be more in line with current python packaging practices
Diffstat (limited to 'SCons/__main__.py')
-rw-r--r--SCons/__main__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/SCons/__main__.py b/SCons/__main__.py
new file mode 100644
index 0000000..0dfbb9d
--- /dev/null
+++ b/SCons/__main__.py
@@ -0,0 +1,4 @@
+import SCons.Script
+# this does all the work, and calls sys.exit
+# with the proper exit status when done.
+SCons.Script.main()