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``
This commit is contained in:
许杰友 Jieyou Xu (Joe) 2024-08-14 21:43:09 +08:00 committed by GitHub
commit 7472d1bbaf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 3 deletions

View File

@ -20,6 +20,5 @@ run-make/reproducible-build/Makefile
run-make/rlib-format-packed-bundled-libs/Makefile
run-make/split-debuginfo/Makefile
run-make/symbol-mangling-hashed/Makefile
run-make/sysroot-crates-are-unstable/Makefile
run-make/translation/Makefile
run-make/x86_64-fortanix-unknown-sgx-lvi/Makefile

View File

@ -1,2 +0,0 @@
all:
'$(PYTHON)' test.py

View File

@ -0,0 +1,5 @@
use run_make_support::python_command;
fn main() {
python_command().arg("test.py").run();
}