diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2008-08-20 00:38:03 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2008-08-20 00:38:03 +0000 |
commit | a7e8c231eaafe216ab325ea4f6b8e0213b64a6dc (patch) | |
tree | b75c0fd88c1f1dd717f853a6e893ef729fefec5a | |
parent | f6884373c278f6b2306d55bd7b556accb3dcf8f5 (diff) | |
download | bcm5719-llvm-a7e8c231eaafe216ab325ea4f6b8e0213b64a6dc.tar.gz bcm5719-llvm-a7e8c231eaafe216ab325ea4f6b8e0213b64a6dc.zip |
Fix some spam from make I accidentally introduced.
llvm-svn: 55027
-rw-r--r-- | clang/test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Makefile b/clang/test/Makefile index 3de0538fb87..5971b61de05 100644 --- a/clang/test/Makefile +++ b/clang/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 -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) |