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>maint
parent
65260a4f23
commit
8fb2a231bf
4
Makefile
4
Makefile
|
@ -572,7 +572,6 @@ TCLTK_PATH = wish
|
||||||
XGETTEXT = xgettext
|
XGETTEXT = xgettext
|
||||||
MSGFMT = msgfmt
|
MSGFMT = msgfmt
|
||||||
CURL_CONFIG = curl-config
|
CURL_CONFIG = curl-config
|
||||||
PTHREAD_LIBS = -lpthread
|
|
||||||
PTHREAD_CFLAGS =
|
PTHREAD_CFLAGS =
|
||||||
GCOV = gcov
|
GCOV = gcov
|
||||||
STRIP = strip
|
STRIP = strip
|
||||||
|
@ -580,6 +579,9 @@ SPATCH = spatch
|
||||||
|
|
||||||
export TCL_PATH TCLTK_PATH
|
export TCL_PATH TCLTK_PATH
|
||||||
|
|
||||||
|
# Set our default LIBS variables
|
||||||
|
PTHREAD_LIBS = -lpthread
|
||||||
|
|
||||||
# user customisation variable for 'sparse' target
|
# user customisation variable for 'sparse' target
|
||||||
SPARSE_FLAGS ?=
|
SPARSE_FLAGS ?=
|
||||||
# internal/platform customisation variable for 'sparse'
|
# internal/platform customisation variable for 'sparse'
|
||||||
|
|
Loading…
Reference in New Issue