aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mesonmain.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-03-08 21:33:40 -0500
committerEli Schwartz <eschwartz@archlinux.org>2022-03-08 21:34:39 -0500
commit7cc4ca2cbb38360743f1d56a5a709bbd51b53ad6 (patch)
treedfc772753ff9031b02dd3ee951472d9c74a9a09b /mesonbuild/mesonmain.py
parentf5176f01b9e0e9623a749082b556ed7d87ce74dd (diff)
downloadmeson-7cc4ca2cbb38360743f1d56a5a709bbd51b53ad6.zip
meson-7cc4ca2cbb38360743f1d56a5a709bbd51b53ad6.tar.gz
meson-7cc4ca2cbb38360743f1d56a5a709bbd51b53ad6.tar.bz2
Revert "Add new env2cross command."
This reverts commit e257a870fe5e676c55a2282b0e7fc9be34bba2ac. The PR adding this command had infinitely hanging CI, and now that it is merged to master we cannot get any CI on any PR to succeed.
Diffstat (limited to 'mesonbuild/mesonmain.py')
-rw-r--r--mesonbuild/mesonmain.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/mesonbuild/mesonmain.py b/mesonbuild/mesonmain.py
index 89816ec..93cb8b0 100644
--- a/mesonbuild/mesonmain.py
+++ b/mesonbuild/mesonmain.py
@@ -30,7 +30,7 @@ from . import mconf, mdist, minit, minstall, mintro, msetup, mtest, rewriter, ms
from .mesonlib import MesonException, MesonBugException
from .environment import detect_msys2_arch
from .wrap import wraptool
-from .scripts import env2mfile
+
# Note: when adding arguments, please also add them to the completion
# scripts in $MESONSRC/data/shell-completions/
@@ -70,8 +70,6 @@ class CommandLineParser:
help_msg='Build the project')
self.add_command('devenv', mdevenv.add_arguments, mdevenv.run,
help_msg='Run commands in developer environment')
- self.add_command('env2mfile', env2mfile.add_arguments, env2mfile.run,
- help_msg='Convert current environment to a cross or native file')
# Hidden commands
self.add_command('runpython', self.add_runpython_arguments, self.run_runpython_command,