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>
Ævar Arnfjörð Bjarmason committed
Feb 22, 2019 at 15:41 UTC
8fb2a231bfc09a04ca5ecc623a9d95f9d24eb054
1 file changed
+3
-1
Makefile
+3
-1
@@ -572,7 +572,6 @@ TCLTK_PATH = wish
572
XGETTEXT = xgettext
573
MSGFMT = msgfmt
574
CURL_CONFIG = curl-config
575
-PTHREAD_LIBS = -lpthread
575
PTHREAD_CFLAGS =
576
GCOV = gcov
577
STRIP = strip
@@ -580,6 +579,9 @@ SPATCH = spatch
579
580
export TCL_PATH TCLTK_PATH
581
582
+# Set our default LIBS variables
583
+PTHREAD_LIBS = -lpthread
584
+
585
# user customisation variable for 'sparse' target
586
SPARSE_FLAGS ?=
587
# internal/platform customisation variable for 'sparse'