From 4f0b2d1e2548b6966ebc98906a621222ecfb3086 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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165098 91177308-0d34-0410-b5e6-96231b3b80d8 --- Makefile | 4 ++-- 1 file 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 -- 2.40.0