aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2008-08-20 00:02:01 +0000
committerEli Friedman <eli.friedman@gmail.com>2008-08-20 00:02:01 +0000
commit0adb3c9b2c0772e940970e2b827d1ee75c0acfce (patch)
tree8d6d307a93fa75279a9e12aed9860fa669befec3
parenta622d8c2719e927b47f48dbebcece770e752dfb8 (diff)
Get rid of the bogus -depth +0 argument; I really have no clue what the
heck it does on Darwin, but it's not part of POSIX, and the GNU version of find errors out on it. On a side note, there are a couple of new failures due to tests including OS X specific headers. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55019 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index c8404a07bf..3de0538fb8 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -2,7 +2,7 @@ LEVEL = ../../..
include $(LEVEL)/Makefile.common
# Test in all non .svn or Output directories below this one.
-TESTDIRS = $(shell find . -name .svn -prune -or -name Output -prune -or -type d -depth +0 -print)
+TESTDIRS = $(shell find . -name .svn -prune -o -name Output -prune -o -type d -print)
# Only run rewriter tests on darwin.
ifeq ($(OS),Darwin)