Skip to content

Commit 8fb2a23

Browse files
avargitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 65260a4 commit 8fb2a23

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,14 +572,16 @@ TCLTK_PATH = wish
572572
XGETTEXT = xgettext
573573
MSGFMT = msgfmt
574574
CURL_CONFIG = curl-config
575-
PTHREAD_LIBS = -lpthread
576575
PTHREAD_CFLAGS =
577576
GCOV = gcov
578577
STRIP = strip
579578
SPATCH = spatch
580579

581580
export TCL_PATH TCLTK_PATH
582581

582+
# Set our default LIBS variables
583+
PTHREAD_LIBS = -lpthread
584+
583585
# user customisation variable for 'sparse' target
584586
SPARSE_FLAGS ?=
585587
# internal/platform customisation variable for 'sparse'

0 commit comments

Comments
 (0)