From 2d1b6242f23fb522d87b5ed665d68d605abcfd5a Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 19 Apr 2011 16:41:34 +0200 Subject: [PATCH] curl-config: fix version output do the s/VERSION/CURLVERSION replacement for the human redable output for --checkfor Reported by: Ryan Schmidt --- curl-config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curl-config.in b/curl-config.in index 023280303..150004d77 100644 --- a/curl-config.in +++ b/curl-config.in @@ -113,7 +113,7 @@ while test $# -gt 0; do # silent success exit 0 else - echo "requested version $checkfor is newer than existing @VERSION@" + echo "requested version $checkfor is newer than existing @CURLVERSION@" exit 1 fi ;;