diff options
-rwxr-xr-x | meson.py | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -17,14 +17,4 @@ from mesonbuild import mesonmain import sys, os -def main(): - thisfile = __file__ - if not os.path.isabs(thisfile): - thisfile = os.path.normpath(os.path.join(os.getcwd(), thisfile)) - if __package__ == '': - thisfile = os.path.dirname(thisfile) - - sys.exit(mesonmain.run(thisfile, sys.argv[1:])) - -if __name__ == '__main__': - main() +sys.exit(mesonmain.run(sys.argv[0], sys.argv[1:])) |