]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-make-fulldeps/print-target-list/Makefile
Fix an sh error
[rust.git] / src / test / run-make-fulldeps / print-target-list / Makefile
index 144c5ba10cccf14c316a0cc2649b984461938ea8..5f10f2aa3b0f419836efb67d7a4f23bbdc5c5def 100644 (file)
@@ -2,14 +2,7 @@
 
 # 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 \
-                               ;; \
-                       esac \
+               $(BARE_RUSTC) --target $$target --print sysroot; \
        done