about summary refs log tree commit diff
diff options
context:
space:
mode:
authorKristofer Rye <kristofer.rye@gmail.com>2019-05-27 19:40:11 -0500
committerKristofer Rye <kristofer.rye@gmail.com>2019-05-27 19:40:11 -0500
commite0f017da75da3686e5186b6f1ce9a39a0f8d2aa2 (patch)
tree4efc60e45967d88b6bb467cf51e6587e7950f7e5
parent57cea25151238517375c200b22772528828133a2 (diff)
downloadrust-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/Makefile2
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