diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2016-02-21 01:50:22 +0100 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2016-02-21 01:51:13 +0100 |
commit | 6e691cacd6484b02df72f3e46a1d2ed0779a3107 (patch) | |
tree | fb3e251bccb4a5d0a8e1671cd89bd3a5f64f0637 /testsuite/tests/driver/T1372 | |
parent | 0b00add03043804211f567a3d0810114c0274252 (diff) | |
download | haskell-6e691cacd6484b02df72f3e46a1d2ed0779a3107.tar.gz |
Testsuite: pass '-s --no-print-directory' to MAKE
This seems necessary after 9634e24 (#11569).
Diffstat (limited to 'testsuite/tests/driver/T1372')
-rw-r--r-- | testsuite/tests/driver/T1372/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testsuite/tests/driver/T1372/Makefile b/testsuite/tests/driver/T1372/Makefile index acd6b66d20..22260cf6e3 100644 --- a/testsuite/tests/driver/T1372/Makefile +++ b/testsuite/tests/driver/T1372/Makefile @@ -18,18 +18,18 @@ clean: rm -rf $(LOCAL_PKGCONF) T1372: - $(MAKE) clean - $(MAKE) prep + $(MAKE) -s --no-print-directory clean + $(MAKE) -s --no-print-directory prep # This should recompile Main.hs, because A in package p1 has changed # and recompiling Main.hs will now fail. -cd p2 && ./setup build -v0 - $(MAKE) clean + $(MAKE) -s --no-print-directory clean prep: "$(GHC_PKG)" init $(LOCAL_PKGCONF) cp p1/A1.hs p1/A.hs - $(MAKE) prep.p1 - $(MAKE) prep.p2 + $(MAKE) -s --no-print-directory prep.p1 + $(MAKE) -s --no-print-directory prep.p2 cp p1/A2.hs p1/A.hs cd p1 && ./setup build -v0 |