From 85333bc7b635dcf2434d961eeeff870c8562ad12 Mon Sep 17 00:00:00 2001 From: Kevin Burke Date: Fri, 1 Oct 2021 11:49:26 -0700 Subject: [PATCH] Makefile: provide better help if TAP tests are not enabled I previously got stuck at this error message when trying to run the SSL tests. The error message does not provide a whole lot of context about how to fix the problem. This provides a little bit more context with a likely solution. --- src/Makefile.global.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 6e2f224cc4..f14f799d96 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -476,7 +476,7 @@ cd $(srcdir) && \ endef else -prove_installcheck = @echo "TAP tests not enabled" +prove_installcheck = @echo "TAP tests not enabled. Maybe you need to configure with --enable-tap-tests" prove_check = $(prove_installcheck) endif -- 2.32.0