Add the missing backslash-newline which was causing make errors.

llvm-svn: 165098
This commit is contained in:
Bill Wendling 2012-10-03 08:07:20 +00:00
parent 0bd3665a5c
commit 32669834d3
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@ ifeq ($(MAKECMDGOALS),libs-only)
OPTIONAL_DIRS :=
endif
ifeq ($(BUILD_CLANG_ONLY),YES)
DIRS := $(filter-out tools docs unittests, $(DIRS))
tools/driver tools/libclang
DIRS := $(filter-out tools docs unittests, $(DIRS)) \
tools/driver tools/libclang
OPTIONAL_DIRS :=
endif