Skip to content

Commit

Permalink
Fix an sh error
Browse files Browse the repository at this point in the history
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 <kristofer.rye@gmail.com>
Tested-by: Kristofer Rye <kristofer.rye@gmail.com>
  • Loading branch information
rye committed May 28, 2019
1 parent 57cea25 commit e0f017d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/run-make-fulldeps/print-target-list/Makefile
Expand Up @@ -4,5 +4,5 @@
# target specifications
all:
for target in $(shell $(BARE_RUSTC) --print target-list); do \
$(BARE_RUSTC) --target $$target --print sysroot \
$(BARE_RUSTC) --target $$target --print sysroot; \
done

0 comments on commit e0f017d

Please sign in to comment.