From 8de3ddf8d8140175f936bebdedd5c40fdc949450 Mon Sep 17 00:00:00 2001 From: Kristofer Rye Date: Mon, 27 May 2019 16:44:16 -0500 Subject: [PATCH] Remove *ios* case from print-target-list Makefile Based on the TODO, this case was added to short-circuit for ios builds, which is no longer necessary. The comment in this Makefile mentions rust-lang/rust#29812 as a dependency, but that issue has been since closed, with a statement that the ICE of concern was resolved circa 1.12. Here we remove this case, and just run the same branch for all targets. Signed-off-by: Kristofer Rye --- src/test/run-make-fulldeps/print-target-list/Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/test/run-make-fulldeps/print-target-list/Makefile b/src/test/run-make-fulldeps/print-target-list/Makefile index 144c5ba10ccc..c624b9b491d6 100644 --- a/src/test/run-make-fulldeps/print-target-list/Makefile +++ b/src/test/run-make-fulldeps/print-target-list/Makefile @@ -2,12 +2,9 @@ # Checks that all the targets returned by `rustc --print target-list` are valid # target specifications -# TODO remove the '*ios*' case when rust-lang/rust#29812 is fixed all: for target in $(shell $(BARE_RUSTC) --print target-list); do \ case $$target in \ - *ios*) \ - ;; \ *) \ $(BARE_RUSTC) --target $$target --print sysroot \ ;; \