diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2018-08-23 09:12:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-23 09:12:27 -0400 |
commit | 3f3ae097d5a0c32b384aa3c2627cd88b66e66ea7 (patch) | |
tree | 02b41228c21958f5cb89f13f75c4eb2ae16c4778 /mesonbuild/mconf.py | |
parent | 54aed1a92c282b88060a32586d47fd86a4866f03 (diff) | |
parent | 05cab3dee5c1352e36c03f19966511d9c51d8db8 (diff) | |
download | meson-3f3ae097d5a0c32b384aa3c2627cd88b66e66ea7.zip meson-3f3ae097d5a0c32b384aa3c2627cd88b66e66ea7.tar.gz meson-3f3ae097d5a0c32b384aa3c2627cd88b66e66ea7.tar.bz2 |
Merge pull request #3769 from xclaesse/command-line-step2
Command line step2
Diffstat (limited to 'mesonbuild/mconf.py')
-rw-r--r-- | mesonbuild/mconf.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py index 513c238..2fd69b0 100644 --- a/mesonbuild/mconf.py +++ b/mesonbuild/mconf.py @@ -13,7 +13,6 @@ # limitations under the License. import os -import sys import argparse from . import (coredata, mesonlib, build) @@ -172,7 +171,3 @@ def run(args): print('Meson configurator encountered an error:') raise e return 0 - - -if __name__ == '__main__': - sys.exit(run(sys.argv[1:])) |