summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-08-29 13:52:24 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-08-29 13:52:24 +0200
commit12b936e140ab3ccb2d2802aded91c97419d0fbd2 (patch)
treee9bf5eb035c8f26d19badb0844d055a74a2bc01e
parentc7779ea25baa7856c650073658bffb13eaa5deb9 (diff)
downloadgnutls-12b936e140ab3ccb2d2802aded91c97419d0fbd2.tar.gz
tests: don't run danetool.sh when not compiled with dane support
-rw-r--r--tests/Makefile.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 02e416eb21..9fb2086c50 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -253,7 +253,10 @@ check_PROGRAMS = $(ctests)
dist_check_SCRIPTS = rfc2253-escape-test rsa-md5-collision/rsa-md5-collision.sh
if !WINDOWS
-dist_check_SCRIPTS += danetool.sh fastopen.sh starttls.sh
+dist_check_SCRIPTS += fastopen.sh starttls.sh
+if ENABLE_DANE
+dist_check_SCRIPTS += danetool.sh
+endif
endif
TESTS = $(ctests) $(dist_check_SCRIPTS)