From d1011c2ca71b8b7ed475e3c144b5d4f558742944 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sat, 4 Sep 2004 23:07:57 +0000 Subject: [PATCH] Make sure llvm-test doesn't build automatically so the nightly test can finish its build phase without building and running all the tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16172 91177308-0d34-0410-b5e6-96231b3b80d8 --- projects/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/Makefile b/projects/Makefile index 9c7590580af..ab4c7e283d8 100644 --- a/projects/Makefile +++ b/projects/Makefile @@ -10,6 +10,6 @@ LEVEL=.. include $(LEVEL)/Makefile.config -DIRS:= $(patsubst $(SourceDir)/%/Makefile,%,$(wildcard $(SourceDir)/*/Makefile)) +DIRS:= $(filter-out llvm-test,$(patsubst $(SourceDir)/%/Makefile,%,$(wildcard $(SourceDir)/*/Makefile))) include $(BUILD_SRC_ROOT)/Makefile.rules