forked from OSchip/llvm-project
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. llvm-svn: 55019
This commit is contained in:
parent
e79740851f
commit
02d4a78688
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue