]> granicus.if.org Git - clang/commitdiff
Revert to using shell to find files instead of 'find', that wasn't portable.
authorDaniel Dunbar <daniel@zuster.org>
Sun, 12 Jul 2009 19:00:20 +0000 (19:00 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Sun, 12 Jul 2009 19:00:20 +0000 (19:00 +0000)
 - I think I did this commit sequence before. :)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75420 91177308-0d34-0410-b5e6-96231b3b80d8

test/Makefile

index 25af266c762deb6b8b166f0bb0738a356359d7c8..4c65d7c0157d7d643f8d8c0ad9da462ab0216b0d 100644 (file)
@@ -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