From 068f7ae2645844ce76b73702bd275f2073f3919c Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Mon, 3 Dec 2012 22:40:26 +0100 Subject: build: prevent global LIBS from influencing src and lib build targets Currently, LIBS is already used through other macros. --- curl-config.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'curl-config.in') 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) -- cgit v1.2.1