summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2015-02-17 16:10:04 +0100
committerAttila Molnar <attilamolnar@hush.com>2015-02-17 16:10:04 +0100
commitd3124462f23cc1aa72357919199be026458f160a (patch)
treeaa658e964d2545ebc7ebd25c4272d027b60fec57
parentcde9fdc38bd247bba69638782e0265c86e427bae (diff)
parent9f4038f62015b79246ca6e267f9935f5305cf21a (diff)
Merge pull request #992 from SaberUK/insp20+fix-error-message
[2.0] Fix erroneous error messages in configure.
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 425bb21af..fae17dfea 100755
--- a/configure
+++ b/configure
@@ -660,12 +660,12 @@ dumphash();
if (($config{USE_GNUTLS} eq "y") && ($config{HAS_GNUTLS} ne "y"))
{
- print "Sorry, but I couldn't detect GnuTLS. Make sure gnutls-config is in your path.\n";
+ print "Sorry, but I couldn't detect GnuTLS. Make sure pkg-config is in your path.\n";
exit(0);
}
if (($config{USE_OPENSSL} eq "y") && ($config{HAS_OPENSSL} ne "y"))
{
- print "Sorry, but I couldn't detect OpenSSL. Make sure openssl is in your path.\n";
+ print "Sorry, but I couldn't detect OpenSSL. Make sure pkg-config and openssl are in your path.\n";
exit(0);
}
our $failed = 0;