From e0f017da75da3686e5186b6f1ce9a39a0f8d2aa2 Mon Sep 17 00:00:00 2001 From: Kristofer Rye Date: Mon, 27 May 2019 19:40:11 -0500 Subject: [PATCH] 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 Tested-by: Kristofer Rye --- src/test/run-make-fulldeps/print-target-list/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.44.0