diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-07-02 23:55:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-02 23:55:44 -0400 |
commit | 50033878a6d687a54ee5b3d1631cca2bcc32e508 (patch) | |
tree | 85ca839949d0c48cec32a486ca041fe7e6931b54 /python/servo/bootstrap_commands.py | |
parent | a7ff87f0e97447fbe347fe0d188fad524c80ffa8 (diff) | |
parent | 6609b098d6f12e6ccaeb83783778efa80fd20271 (diff) | |
download | servo-50033878a6d687a54ee5b3d1631cca2bcc32e508.tar.gz servo-50033878a6d687a54ee5b3d1631cca2bcc32e508.zip |
Auto merge of #23676 - servo:check, r=Manishearth
Share more `./mach build` logic with mach check, doc, test-unit
Fixes #23659
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23676)
<!-- Reviewable:end -->
Diffstat (limited to 'python/servo/bootstrap_commands.py')
-rw-r--r-- | python/servo/bootstrap_commands.py | 12 |
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') |