Remove the "./mach build-stable" subcommand

It is replaced by "./mach build-gecklibo" using stable Rust.
This commit is contained in:
Simon Sapin 2016-07-07 17:11:03 +02:00
parent 26a78817c1
commit 79ef0a5d7f
2 changed files with 1 additions and 41 deletions

View file

@ -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":