Bug 1704685 - Remove leftover from bug 1686888. r=firefox-build-system-reviewers,nalexander

Differential Revision: https://phabricator.services.mozilla.com/D111765
This commit is contained in:
Mike Hommey 2021-04-13 04:57:48 +00:00
parent e7caa49b23
commit 9bce63da4f
3 changed files with 2 additions and 11 deletions

View File

@ -164,10 +164,7 @@ def rust_compiler(rustc_info, cargo_info, build_project):
"""
)
)
if build_project == "tools/crashreporter":
rustc_min_version = Version("1.47.0")
else:
rustc_min_version = Version(MINIMUM_RUST_VERSION)
rustc_min_version = Version(MINIMUM_RUST_VERSION)
cargo_min_version = rustc_min_version
version = rustc_info.version

View File

@ -2069,11 +2069,7 @@ class RustTest(BaseConfigureTest):
}
self.TARGET = target
# --enable-project=tools/crashreporter for more relaxed rust
# dependency.
sandbox = self.get_sandbox(
paths, {}, ["--enable-project=tools/crashreporter"], environ
)
sandbox = self.get_sandbox(paths, {}, [], environ)
# Trick the sandbox into not running the target compiler check
dep = sandbox._depends[sandbox["c_compiler"]]

View File

@ -1,5 +1,3 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
include("../../build/moz.configure/rust.configure")