# HG changeset patch # User Stu Tomlinson # Date 1269655891 0 # Node ID 55a807c06fbb57b58e9d73212d36a314dd42d6c9 # Parent 08d4ec689d66253d123cac5d279bc0faf079601f Add a more helpful error message if --with-system-ssl-certs is specified without a path provided diff -r 08d4ec689d66 -r 55a807c06fbb configure.ac --- a/configure.ac Fri Mar 26 09:37:16 2010 +0000 +++ b/configure.ac Sat Mar 27 02:11:31 2010 +0000 @@ -1684,6 +1684,9 @@ SSL_CERTIFICATES_DIR="" if ! test -z "$ssl_certificates_dir" ; then + if test "x$ssl_certificates_dir" = "xyes" ; then + AC_MSG_ERROR([--with-system-ssl-certs requires that a location is specified, eg. --with-system-ssl-certs=/etc/pki/tls/certs]) + fi if ! test -d "$ssl_certificates_dir" ; then AC_MSG_ERROR([$ssl_certificates_dir does not exist, if this is the correct location please make sure that it exists.]) fi