Add the missing backslash-newline which was causing make errors.
authorBill Wendling <isanbard@gmail.com>
Wed, 3 Oct 2012 08:07:20 +0000 (08:07 +0000)
committerBill Wendling <isanbard@gmail.com>
Wed, 3 Oct 2012 08:07:20 +0000 (08:07 +0000)
llvm-svn: 165098

clang/Makefile

index 6eec517..2ffe359 100644 (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