aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/command_base.py
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2016-07-07 17:11:03 +0200
committerSimon Sapin <simon.sapin@exyr.org>2016-07-08 22:28:51 +0200
commit79ef0a5d7f4930b6b970d993a633db65b5ff7349 (patch)
treeb9d17a39100624ff570e35c03fc1f009b37b53bd /python/servo/command_base.py
parent26a78817c1e5d720ed4923be984d962df2f6774f (diff)
downloadservo-79ef0a5d7f4930b6b970d993a633db65b5ff7349.tar.gz
servo-79ef0a5d7f4930b6b970d993a633db65b5ff7349.zip
Remove the "./mach build-stable" subcommand
It is replaced by "./mach build-gecklibo" using stable Rust.
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r--python/servo/command_base.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index b9a555f4ff0..9990def8516 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -333,10 +333,7 @@ class CommandBase(object):
env["CARGO_HOME"] = self.config["tools"]["cargo-home-dir"]
- if self.use_stable_rust():
- env["CARGO_TARGET_DIR"] = path.join(self.context.topdir, "ports/stable-rust/target")
- elif "CARGO_TARGET_DIR" not in env:
- env["CARGO_TARGET_DIR"] = path.join(self.context.topdir, "target")
+ env["CARGO_TARGET_DIR"] = path.join(self.context.topdir, "target")
if extra_lib:
if sys.platform == "darwin":