From: bert hubert Date: Sun, 28 Feb 2016 11:01:56 +0000 (+0100) Subject: actually test against the right shipped tld names list if curl can't be found X-Git-Tag: rec-4.0.0-alpha2~44 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f919a5c2159837d01b4b9b39f8547b18757e432;p=pdns actually test against the right shipped tld names list if curl can't be found --- 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 ])