]> git.lizzy.rs Git - rust.git/commitdiff
Remove now-dead case statement in print-target-list Makefile
authorKristofer Rye <kristofer.rye@gmail.com>
Mon, 27 May 2019 21:52:54 +0000 (16:52 -0500)
committerKristofer Rye <kristofer.rye@gmail.com>
Mon, 27 May 2019 21:52:54 +0000 (16:52 -0500)
Since this case statement no longer has any branches, remove it.

Signed-off-by: Kristofer Rye <kristofer.rye@gmail.com>
src/test/run-make-fulldeps/print-target-list/Makefile

index c624b9b491d666b1885045b9f1f97ac5c673b3d8..b66b5d0422d13c01f0dce6680ef21e6010080823 100644 (file)
@@ -4,9 +4,5 @@
 # target specifications
 all:
        for target in $(shell $(BARE_RUSTC) --print target-list); do \
-               case $$target in \
-                       *) \
-                               $(BARE_RUSTC) --target $$target --print sysroot \
-                               ;; \
-                       esac \
+               $(BARE_RUSTC) --target $$target --print sysroot \
        done