Use consistent capitalization for ENABLE_THREADS in tests
llvm-svn: 215565
This commit is contained in:
parent
74ef277774
commit
6bc862dcf5
|
|
@ -1,7 +1,7 @@
|
||||||
LEVEL = ../../make
|
LEVEL = ../../make
|
||||||
|
|
||||||
CXX_SOURCES := main.cpp
|
CXX_SOURCES := main.cpp
|
||||||
ENABLE_THREADS := Yes
|
ENABLE_THREADS := YES
|
||||||
EXE := AttachResume
|
EXE := AttachResume
|
||||||
|
|
||||||
include $(LEVEL)/Makefile.rules
|
include $(LEVEL)/Makefile.rules
|
||||||
|
|
|
||||||
|
|
@ -114,7 +114,7 @@ LD = $(CC)
|
||||||
LDFLAGS ?= $(CFLAGS)
|
LDFLAGS ?= $(CFLAGS)
|
||||||
LDFLAGS += $(LD_EXTRAS)
|
LDFLAGS += $(LD_EXTRAS)
|
||||||
ifneq "$(OS)" "Windows_NT"
|
ifneq "$(OS)" "Windows_NT"
|
||||||
ifeq "$(ENABLE_THREADS)" "Yes"
|
ifeq "$(ENABLE_THREADS)" "YES"
|
||||||
LDFLAGS += -lpthread
|
LDFLAGS += -lpthread
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue