From d37908f14988f8d00d25893e1f9ce99737d6efa3 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Sun, 12 Jul 2009 19:00:20 +0000 Subject: [PATCH] Revert to using shell to find files instead of 'find', that wasn't portable. - I think I did this commit sequence before. :) llvm-svn: 75420 --- clang/test/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/clang/test/Makefile b/clang/test/Makefile index 25af266c762d..4c65d7c0157d 100644 --- a/clang/test/Makefile +++ b/clang/test/Makefile @@ -1,9 +1,8 @@ LEVEL = ../../.. include $(LEVEL)/Makefile.common -# Test in all immediate subdirectories if unset (except for the .svn and Output -# directories). -TESTDIRS ?= $(shell find $(PROJ_SRC_DIR) -depth 1 -type d -not -name .svn -prune -and -not -name Output -prune) +# Test in all immediate subdirectories if unset. +TESTDIRS ?= $(shell echo $(PROJ_SRC_DIR)/*/) ifndef TESTARGS ifdef VERBOSE