Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2019-02-22 17:41:25 +0300
committerJunio C Hamano <gitster@pobox.com>2019-02-24 18:32:57 +0300
commit8fb2a231bfc09a04ca5ecc623a9d95f9d24eb054 (patch)
tree293aac9fadf08327a8269b46c6aa1ce001734e73 /Makefile
parent65260a4f23761eceb37917e8bfc4aca36cc890ca (diff)
Makefile: Move *_LIBS assignment into its own section
Now the only other non-program assignment in the previous list is PTHREAD_CFLAGS, which'll be moved elsewhere in a follow-up change. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0870fd4651..59674ce9d7 100644
--- a/Makefile
+++ b/Makefile
@@ -572,7 +572,6 @@ TCLTK_PATH = wish
XGETTEXT = xgettext
MSGFMT = msgfmt
CURL_CONFIG = curl-config
-PTHREAD_LIBS = -lpthread
PTHREAD_CFLAGS =
GCOV = gcov
STRIP = strip
@@ -580,6 +579,9 @@ SPATCH = spatch
export TCL_PATH TCLTK_PATH
+# Set our default LIBS variables
+PTHREAD_LIBS = -lpthread
+
# user customisation variable for 'sparse' target
SPARSE_FLAGS ?=
# internal/platform customisation variable for 'sparse'