]> granicus.if.org Git - pdns/commitdiff
actually test against the right shipped tld names list if curl can't be found
authorbert hubert <bert.hubert@netherlabs.nl>
Sun, 28 Feb 2016 11:01:56 +0000 (12:01 +0100)
committerbert hubert <bert.hubert@netherlabs.nl>
Sun, 28 Feb 2016 11:01:56 +0000 (12:01 +0100)
pdns/recursordist/m4/pdns_check_curl.m4

index fcc9341c6f3af810252dec4c0f48217be2afe99b..fbc47a6d7ea5bb24f4f35013a1b8ddea1ecf6f19 100644 (file)
@@ -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
 ])