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/annotations | |
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/annotations')
-rw-r--r-- | testsuite/tests/annotations/should_compile/th/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/annotations/should_compile/th/Makefile b/testsuite/tests/annotations/should_compile/th/Makefile index b10fc725db..9f1db83802 100644 --- a/testsuite/tests/annotations/should_compile/th/Makefile +++ b/testsuite/tests/annotations/should_compile/th/Makefile @@ -3,7 +3,7 @@ include $(TOP)/mk/boilerplate.mk include $(TOP)/mk/test.mk annth_make: - $(MAKE) clean_annth_make + $(MAKE) -s --no-print-directory clean_annth_make mkdir build_make '$(TEST_HC)' $(TEST_HC_OPTS) $(ghcThWayFlags) -v0 --make \ -odir build_make -hidir build_make -o build_make/annth annth.hs @@ -12,7 +12,7 @@ clean_annth_make: rm -rf build_make annth_compunits: - $(MAKE) clean_annth_compunits + $(MAKE) -s --no-print-directory clean_annth_compunits mkdir build_compunits '$(TEST_HC)' $(TEST_HC_OPTS) $(ghcThWayFlags) -v0 \ -odir build_compunits -hidir build_compunits \ |