Skip to content

Commit 57cea25

Browse files
committed
Remove now-dead case statement in print-target-list Makefile
Since this case statement no longer has any branches, remove it. Signed-off-by: Kristofer Rye <[email protected]>
1 parent 8de3ddf commit 57cea25

File tree

1 file changed

+1
-5
lines changed
  • src/test/run-make-fulldeps/print-target-list

1 file changed

+1
-5
lines changed

src/test/run-make-fulldeps/print-target-list/Makefile

+1-5
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,5 @@
44
# target specifications
55
all:
66
for target in $(shell $(BARE_RUSTC) --print target-list); do \
7-
case $$target in \
8-
*) \
9-
$(BARE_RUSTC) --target $$target --print sysroot \
10-
;; \
11-
esac \
7+
$(BARE_RUSTC) --target $$target --print sysroot \
128
done

0 commit comments

Comments
 (0)