From 32669834d346bfeb739c7f3f17cb83d8141624b7 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 3 Oct 2012 08:07:20 +0000 Subject: [PATCH] Add the missing backslash-newline which was causing make errors. llvm-svn: 165098 --- clang/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/Makefile b/clang/Makefile index 6eec517..2ffe359 100644 --- a/clang/Makefile +++ b/clang/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 -- 2.7.4