diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-04-19 16:41:34 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-04-19 16:41:34 +0200 |
commit | 2d1b6242f23fb522d87b5ed665d68d605abcfd5a (patch) | |
tree | 3bd52f78422e1ec790cfdf7b8ece82dcd6e2ca8e /curl-config.in | |
parent | a5db4a46ac67b6904d0079b3c62d4f34dc4f7378 (diff) | |
download | curl-2d1b6242f23fb522d87b5ed665d68d605abcfd5a.tar.gz |
curl-config: fix version output
do the s/VERSION/CURLVERSION replacement for the human redable output
for --checkfor
Reported by: Ryan Schmidt
Diffstat (limited to 'curl-config.in')
-rw-r--r-- | curl-config.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 ;; |