[cfe-commits] r165098 - /cfe/trunk/Makefile
Bill Wendling
isanbard at gmail.com
Wed Oct 3 01:07:20 PDT 2012
Author: void
Date: Wed Oct 3 03:07:20 2012
New Revision: 165098
URL: http://llvm.org/viewvc/llvm-project?rev=165098&view=rev
Log:
Add the missing backslash-newline which was causing make errors.
Modified:
cfe/trunk/Makefile
Modified: cfe/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Makefile?rev=165098&r1=165097&r2=165098&view=diff
==============================================================================
--- cfe/trunk/Makefile (original)
+++ cfe/trunk/Makefile Wed Oct 3 03:07:20 2012
@@ -28,8 +28,8 @@
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
More information about the cfe-commits
mailing list