mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
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:
commit
7472d1bbaf
@ -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
|
||||
|
@ -1,2 +0,0 @@
|
||||
all:
|
||||
'$(PYTHON)' test.py
|
5
tests/run-make/sysroot-crates-are-unstable/rmake.rs
Normal file
5
tests/run-make/sysroot-crates-are-unstable/rmake.rs
Normal file
@ -0,0 +1,5 @@
|
||||
use run_make_support::python_command;
|
||||
|
||||
fn main() {
|
||||
python_command().arg("test.py").run();
|
||||
}
|
Loading…
Reference in New Issue
Block a user