From 4f919a5c2159837d01b4b9b39f8547b18757e432 Mon Sep 17 00:00:00 2001 From: bert hubert Date: Sun, 28 Feb 2016 12:01:56 +0100 Subject: [PATCH] actually test against the right shipped tld names list if curl can't be found --- pdns/recursordist/m4/pdns_check_curl.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/recursordist/m4/pdns_check_curl.m4 b/pdns/recursordist/m4/pdns_check_curl.m4 index fcc9341c6..fbc47a6d7 100644 --- a/pdns/recursordist/m4/pdns_check_curl.m4 +++ b/pdns/recursordist/m4/pdns_check_curl.m4 @@ -1,8 +1,8 @@ AC_DEFUN([PDNS_CHECK_CURL], [ AC_CHECK_PROG([CURL], [curl], [curl]) if test "x$CURL" = "x"; then - if test ! -f "${srcdir}/effective_tld_list.dat"; then - AC_MSG_ERROR([curl is missing and you don't have ${srcdir}//effective_tld_list.dat. Install curl or download sources from www.powerdns.com]) + if test ! -f "${srcdir}/effective_tld_names.dat"; then + AC_MSG_ERROR([curl is missing and you don't have ${srcdir}//effective_tld_names.dat. Install curl or download sources from www.powerdns.com]) fi fi ]) -- 2.40.0