From: Nikos Mavrogiannopoulos Date: Thu, 5 Mar 2015 20:04:58 +0000 (+0100) Subject: configure: check for /usr/share/dns/root.key as well for dns root key X-Git-Tag: gnutls_3_4_0~243 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=24bc487157b01af369a57bca228cdaad3ea30730;p=thirdparty%2Fgnutls.git configure: check for /usr/share/dns/root.key as well for dns root key --- diff --git a/configure.ac b/configure.ac index 441031aaf6..866e79fff6 100644 --- a/configure.ac +++ b/configure.ac @@ -446,7 +446,11 @@ else if test -f /var/lib/unbound/root.key;then unbound_root_key_file="/var/lib/unbound/root.key" else - unbound_root_key_file="/etc/unbound/root.key" + if test -f /usr/share/dns/root.key;then + unbound_root_key_file="/usr/share/dns/root.key" + else + unbound_root_key_file="/etc/unbound/root.key" + fi fi fi )