aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/bootstrap_commands.py
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2019-07-01 16:17:48 +0200
committerSimon Sapin <simon.sapin@exyr.org>2019-07-01 16:44:21 +0200
commit9110b25d13cce94d237b9b8ce6d2be0ff9058583 (patch)
tree74950712b2f2e2f21a4a35de3ef46162997072c3 /python/servo/bootstrap_commands.py
parentacd8454b169eec019bcebbf8448038c0426f306e (diff)
downloadservo-9110b25d13cce94d237b9b8ce6d2be0ff9058583.tar.gz
servo-9110b25d13cce94d237b9b8ce6d2be0ff9058583.zip
Remove `./mach env` as it is a lie.
We stopped overriding `$PATH` since using rustup. The printed variables are not sufficient to do anything.
Diffstat (limited to 'python/servo/bootstrap_commands.py')
-rw-r--r--python/servo/bootstrap_commands.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/python/servo/bootstrap_commands.py b/python/servo/bootstrap_commands.py
index a2df3aaef33..605b78362d8 100644
--- a/python/servo/bootstrap_commands.py
+++ b/python/servo/bootstrap_commands.py
@@ -34,18 +34,6 @@ from servo.util import delete, download_bytes, download_file, extract, check_has
@CommandProvider
class MachCommands(CommandBase):
- @Command('env',
- description='Print environment setup commands',
- category='bootstrap')
- def env(self):
- env = self.build_env()
- print("export RUSTFLAGS=%s" % env.get("RUSTFLAGS", ""))
- print("export PATH=%s" % env.get("PATH", ""))
- if sys.platform == "darwin":
- print("export DYLD_LIBRARY_PATH=%s" % env.get("DYLD_LIBRARY_PATH", ""))
- else:
- print("export LD_LIBRARY_PATH=%s" % env.get("LD_LIBRARY_PATH", ""))
-
@Command('bootstrap',
description='Install required packages for building.',
category='bootstrap')