Skip to content

Commit e0f017d

Browse files
committed
Fix an sh error
Didn't think it was this particular about things, but I also should have tested locally. It makes sense, though---`\` followed by LF would eat it, so we'd have `sysroot done` instead of `sysroot; done` as it is parsed. This should pass now. Signed-off-by: Kristofer Rye <[email protected]> Tested-by: Kristofer Rye <[email protected]>
1 parent 57cea25 commit e0f017d

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
# target specifications
55
all:
66
for target in $(shell $(BARE_RUSTC) --print target-list); do \
7-
$(BARE_RUSTC) --target $$target --print sysroot \
7+
$(BARE_RUSTC) --target $$target --print sysroot; \
88
done

0 commit comments

Comments
 (0)