Use consistent capitalization for ENABLE_THREADS in tests

llvm-svn: 215565
This commit is contained in:
Ed Maste 2014-08-13 18:27:12 +00:00
parent 74ef277774
commit 6bc862dcf5
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
LEVEL = ../../make
CXX_SOURCES := main.cpp
ENABLE_THREADS := Yes
ENABLE_THREADS := YES
EXE := AttachResume
include $(LEVEL)/Makefile.rules

View File

@ -114,7 +114,7 @@ LD = $(CC)
LDFLAGS ?= $(CFLAGS)
LDFLAGS += $(LD_EXTRAS)
ifneq "$(OS)" "Windows_NT"
ifeq "$(ENABLE_THREADS)" "Yes"
ifeq "$(ENABLE_THREADS)" "YES"
LDFLAGS += -lpthread
endif
endif