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 <kristofer.rye@gmail.com>
Tested-by: Kristofer Rye <kristofer.rye@gmail.com>
This commit is contained in:
Kristofer Rye 2019-05-27 19:40:11 -05:00
parent 57cea25151
commit e0f017da75
No known key found for this signature in database
GPG Key ID: 7B91DEA088C460CC
1 changed files with 1 additions and 1 deletions

View File

@ -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