From 6fb4e2cb42d67b57be44742692a624bf567c951e Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Mon, 24 Jun 2013 07:21:35 +0000 Subject: [PATCH] Filter out dragonegg when checked out into a projects subdirectory. There is some hope of eventually supporting a unified build with it, but until then this lets me (and others) check it out in this location without things breaking. llvm-svn: 184697 --- projects/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/projects/Makefile b/projects/Makefile index 1318a35d941..f00425f81ee 100644 --- a/projects/Makefile +++ b/projects/Makefile @@ -20,6 +20,9 @@ DIRS := $(filter-out compiler-rt,$(DIRS)) # Don't build libcxx, it isn't designed to be built directly. DIRS := $(filter-out libcxx,$(DIRS)) +# DragonEgg may be checked out here but doesn't (yet) build directly. +DIRS := $(filter-out dragonegg,$(DIRS)) + # Sparc cannot link shared libraries (libtool problem?) ifeq ($(ARCH), Sparc) DIRS := $(filter-out sample, $(DIRS))