Skip to content

Commit

Permalink
Remove now-dead case statement in print-target-list Makefile
Browse files Browse the repository at this point in the history
Since this case statement no longer has any branches, remove it.

Signed-off-by: Kristofer Rye <kristofer.rye@gmail.com>
  • Loading branch information
rye committed May 27, 2019
1 parent 8de3ddf commit 57cea25
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/test/run-make-fulldeps/print-target-list/Makefile
Expand Up @@ -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

0 comments on commit 57cea25

Please sign in to comment.