Skip to content

Commit 2a43062

Browse files
authored
Merge pull request #2159 from martin-frbg/issue2149
Avoid unintentional activation of TLS codepath via USE_TLS=0
2 parents ece0bfb + 4ea794a commit 2a43062

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.system

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,7 @@ ifdef USE_SIMPLE_THREADED_LEVEL3
10701070
CCOMMON_OPT += -DUSE_SIMPLE_THREADED_LEVEL3
10711071
endif
10721072

1073-
ifdef USE_TLS
1073+
ifeq ($(USE_TLS), 1)
10741074
CCOMMON_OPT += -DUSE_TLS
10751075
endif
10761076

0 commit comments

Comments
 (0)