diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2007-02-17 17:55:19 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2007-02-17 17:55:19 +0000 |
commit | 2691f1efc8e99ba811e7b2e0faf3230da4d925ef (patch) | |
tree | d6ec0ff1949e583246e1f1b39fdd0c46a5d61124 /curl-config.in | |
parent | d9bf55570b4abbe9ed0058091d567e99ebff0973 (diff) | |
download | curl-2691f1efc8e99ba811e7b2e0faf3230da4d925ef.tar.gz |
Use configure's new LIBCURL_LIBS variable
Diffstat (limited to 'curl-config.in')
-rw-r--r-- | curl-config.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/curl-config.in b/curl-config.in index c5d046e10..96a1a0267 100644 --- a/curl-config.in +++ b/curl-config.in @@ -187,9 +187,9 @@ while test $# -gt 0; do CURLLIBDIR="" fi if test "X@REQUIRE_LIB_DEPS@" = "Xyes"; then - echo ${CURLLIBDIR}-lcurl @LDFLAGS@ @LIBS@ + echo ${CURLLIBDIR}-lcurl @LDFLAGS@ @LIBCURL_LIBS@ @LIBS@ else - echo ${CURLLIBDIR}-lcurl @LDFLAGS@ + echo ${CURLLIBDIR}-lcurl @LDFLAGS@ @LIBS@ fi ;; |