Fix some spam from make I accidentally introduced.

llvm-svn: 55027
This commit is contained in:
Eli Friedman 2008-08-20 00:38:03 +00:00
parent f6884373c2
commit a7e8c231ea
1 changed files with 1 additions and 1 deletions

View File

@ -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 -o -name Output -prune -o -type d -print)
TESTDIRS = $(shell find . -name . -o -name .svn -prune -o -name Output -prune -o -type d -print)
# Only run rewriter tests on darwin.
ifeq ($(OS),Darwin)