diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs index dd45bd3a213..edfe31319e8 100644 --- a/src/bootstrap/builder.rs +++ b/src/bootstrap/builder.rs @@ -614,7 +614,6 @@ macro_rules! describe { dist::RustcDocs, dist::Mingw, dist::Rustc, - dist::DebuggerScripts, dist::Std, dist::RustcDev, dist::Analysis, diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index 5d812e8b332..d37a59426f8 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -456,16 +456,7 @@ impl Step for DebuggerScripts { type Output = (); fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> { - run.path("src/etc/lldb_batchmode.py") - } - - fn make_run(run: RunConfig<'_>) { - run.builder.ensure(DebuggerScripts { - sysroot: run - .builder - .sysroot(run.builder.compiler(run.builder.top_stage, run.build_triple())), - host: run.target, - }); + run.never() } /// Copies debugger scripts for `target` into the `sysroot` specified.