]> git.ipfire.org Git - thirdparty/git.git/commit - Makefile
Makefile: default to -lcurl when no CURL_CONFIG or CURLDIR
authorDave Borowitz <dborowitz@google.com>
Mon, 28 Apr 2014 21:01:23 +0000 (14:01 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 28 Apr 2014 21:29:14 +0000 (14:29 -0700)
commitf3f11fa6a5cee5a90b3ca6a66a25a2beff6996a7
tree7854cc60356ff86ea2ede183de6e7a9a8ceb329b
parentd5067112db68fcc8c7b13c769c896b17480cb5b0
Makefile: default to -lcurl when no CURL_CONFIG or CURLDIR

The original implementation of CURL_CONFIG support did not match the
original behavior of using -lcurl when CURLDIR was not set. This broke
implementations that were lacking curl-config but did have libcurl
installed along system libraries, such as MSysGit. In other words, the
assumption that curl-config is always installed was incorrect.

Instead, if CURL_CONFIG is empty or returns an empty result (e.g. due
to curl-config being missing), use the old behavior of falling back to
-lcurl.

Signed-off-by: Dave Borowitz <dborowitz@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile