diff options
author | Yang Tse <yangsita@gmail.com> | 2012-12-03 22:40:26 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-12-03 22:41:18 +0100 |
commit | 068f7ae2645844ce76b73702bd275f2073f3919c (patch) | |
tree | e058bde364ccad867e1c413d0a101023c28a2455 /libcurl.pc.in | |
parent | 68d2830ee9df50961e481e81c1baaa290c33f03e (diff) | |
download | curl-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 'libcurl.pc.in')
-rw-r--r-- | libcurl.pc.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcurl.pc.in b/libcurl.pc.in index 6e878c549..fdfaec916 100644 --- a/libcurl.pc.in +++ b/libcurl.pc.in @@ -34,6 +34,6 @@ Name: libcurl URL: http://curl.haxx.se/ Description: Library to transfer files with ftp, http, etc. Version: @CURLVERSION@ -Libs: -L${libdir} -lcurl @LIBS@ -Libs.private: @LIBCURL_LIBS@ @LIBS@ +Libs: -L${libdir} -lcurl +Libs.private: @LIBCURL_LIBS@ Cflags: -I${includedir} @CPPFLAG_CURL_STATICLIB@ |