Skip to content

Commit 7472d1b

Browse files
authored
Rollup merge of #129071 - Zalathar:sysroot-unstable, r=jieyouxu
Port `run-make/sysroot-crates-are-unstable` to rmake I already have a more elaborate draft at #126231 that tries to port the underlying Python script to rmake, but there's no need for the removal of Makefiles to be held up on complex tasks like that, so this PR simply takes the trivial Makefile and converts it into a trivial rmake recipe. Part of #121876. r? ``@jieyouxu``
2 parents 2200910 + 342b374 commit 7472d1b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,5 @@ run-make/reproducible-build/Makefile
2020
run-make/rlib-format-packed-bundled-libs/Makefile
2121
run-make/split-debuginfo/Makefile
2222
run-make/symbol-mangling-hashed/Makefile
23-
run-make/sysroot-crates-are-unstable/Makefile
2423
run-make/translation/Makefile
2524
run-make/x86_64-fortanix-unknown-sgx-lvi/Makefile

tests/run-make/sysroot-crates-are-unstable/Makefile

-2
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
use run_make_support::python_command;
2+
3+
fn main() {
4+
python_command().arg("test.py").run();
5+
}

0 commit comments

Comments
 (0)