diff options
| author | Kristofer Rye <kristofer.rye@gmail.com> | 2019-05-27 19:40:11 -0500 |
|---|---|---|
| committer | Kristofer Rye <kristofer.rye@gmail.com> | 2019-05-27 19:40:11 -0500 |
| commit | e0f017da75da3686e5186b6f1ce9a39a0f8d2aa2 (patch) | |
| tree | 4efc60e45967d88b6bb467cf51e6587e7950f7e5 | |
| parent | 57cea25151238517375c200b22772528828133a2 (diff) | |
| download | rust-e0f017da75da3686e5186b6f1ce9a39a0f8d2aa2.tar.gz rust-e0f017da75da3686e5186b6f1ce9a39a0f8d2aa2.zip | |
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>
| -rw-r--r-- | src/test/run-make-fulldeps/print-target-list/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-make-fulldeps/print-target-list/Makefile b/src/test/run-make-fulldeps/print-target-list/Makefile index b66b5d0422d..5f10f2aa3b0 100644 --- a/src/test/run-make-fulldeps/print-target-list/Makefile +++ b/src/test/run-make-fulldeps/print-target-list/Makefile @@ -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 |
