summaryrefslogtreecommitdiff
path: root/curl-config.in
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2012-12-03 22:40:26 +0100
committerYang Tse <yangsita@gmail.com>2012-12-03 22:41:18 +0100
commit068f7ae2645844ce76b73702bd275f2073f3919c (patch)
treee058bde364ccad867e1c413d0a101023c28a2455 /curl-config.in
parent68d2830ee9df50961e481e81c1baaa290c33f03e (diff)
downloadcurl-068f7ae2645844ce76b73702bd275f2073f3919c.tar.gz
build: prevent global LIBS from influencing src and lib build targets
Currently, LIBS is already used through other macros.
Diffstat (limited to 'curl-config.in')
-rw-r--r--curl-config.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/curl-config.in b/curl-config.in
index 731761c3d..a719aec4b 100644
--- a/curl-config.in
+++ b/curl-config.in
@@ -148,14 +148,14 @@ while test $# -gt 0; do
CURLLIBDIR=""
fi
if test "X@REQUIRE_LIB_DEPS@" = "Xyes"; then
- echo ${CURLLIBDIR}-lcurl @LIBCURL_LIBS@ @LIBS@
+ echo ${CURLLIBDIR}-lcurl @LIBCURL_LIBS@
else
- echo ${CURLLIBDIR}-lcurl @LIBS@
+ echo ${CURLLIBDIR}-lcurl
fi
;;
--static-libs)
- echo @libdir@/libcurl.@libext@ @LDFLAGS@ @LIBCURL_LIBS@ @LIBS@
+ echo @libdir@/libcurl.@libext@ @LDFLAGS@ @LIBCURL_LIBS@
;;
--configure)