From 6bc862dcf55a962b0ee64a583d9ccda5c6687c7c Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Wed, 13 Aug 2014 18:27:12 +0000 Subject: [PATCH] Use consistent capitalization for ENABLE_THREADS in tests llvm-svn: 215565 --- lldb/test/functionalities/attach_resume/Makefile | 2 +- lldb/test/make/Makefile.rules | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/test/functionalities/attach_resume/Makefile b/lldb/test/functionalities/attach_resume/Makefile index ac4d10327091..13d40a13b3e3 100644 --- a/lldb/test/functionalities/attach_resume/Makefile +++ b/lldb/test/functionalities/attach_resume/Makefile @@ -1,7 +1,7 @@ LEVEL = ../../make CXX_SOURCES := main.cpp -ENABLE_THREADS := Yes +ENABLE_THREADS := YES EXE := AttachResume include $(LEVEL)/Makefile.rules diff --git a/lldb/test/make/Makefile.rules b/lldb/test/make/Makefile.rules index 7cf09c8a0b05..daa598c60220 100644 --- a/lldb/test/make/Makefile.rules +++ b/lldb/test/make/Makefile.rules @@ -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