diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-02-17 16:10:04 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-02-17 16:10:04 +0100 |
commit | d3124462f23cc1aa72357919199be026458f160a (patch) | |
tree | aa658e964d2545ebc7ebd25c4272d027b60fec57 | |
parent | cde9fdc38bd247bba69638782e0265c86e427bae (diff) | |
parent | 9f4038f62015b79246ca6e267f9935f5305cf21a (diff) |
Merge pull request #992 from SaberUK/insp20+fix-error-message
[2.0] Fix erroneous error messages in configure.
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |