diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-10-03 08:07:20 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-10-03 08:07:20 +0000 |
commit | 4f0b2d1e2548b6966ebc98906a621222ecfb3086 (patch) | |
tree | d7cfd18dbf6b5c06679b6ed16c69ccb4364da500 /Makefile | |
parent | 2985cbc3c08f4da6602679ff6df11b6abe3f11e0 (diff) |
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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |