[cfe-commits] r55027 - /cfe/trunk/test/Makefile

Eli Friedman eli.friedman at gmail.com
Tue Aug 19 17:38:03 PDT 2008


Author: efriedma
Date: Tue Aug 19 19:38:03 2008
New Revision: 55027

URL: http://llvm.org/viewvc/llvm-project?rev=55027&view=rev
Log:
Fix some spam from make I accidentally introduced.


Modified:
    cfe/trunk/test/Makefile

Modified: cfe/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Makefile?rev=55027&r1=55026&r2=55027&view=diff

==============================================================================
--- cfe/trunk/test/Makefile (original)
+++ cfe/trunk/test/Makefile Tue Aug 19 19:38:03 2008
@@ -2,7 +2,7 @@
 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)





More information about the cfe-commits mailing list