summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-10-03 08:07:20 +0000
committerBill Wendling <isanbard@gmail.com>2012-10-03 08:07:20 +0000
commit4f0b2d1e2548b6966ebc98906a621222ecfb3086 (patch)
treed7cfd18dbf6b5c06679b6ed16c69ccb4364da500 /Makefile
parent2985cbc3c08f4da6602679ff6df11b6abe3f11e0 (diff)
downloadclang-4f0b2d1e2548b6966ebc98906a621222ecfb3086.tar.gz
clang-4f0b2d1e2548b6966ebc98906a621222ecfb3086.tar.bz2
clang-4f0b2d1e2548b6966ebc98906a621222ecfb3086.tar.xz
Add the missing backslash-newline which was causing make errors.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165098 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6eec517bd1..2ffe3597a9 100644
--- a/Makefile
+++ b/Makefile
@@ -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