Browse Source

Simplify list of files that get whitespace-checked

The rule is simple: Everything not in src/ext!
Nick Mathewson 11 years ago
parent
commit
286b6df038
1 changed files with 3 additions and 7 deletions
  1. 3 7
      Makefile.am

+ 3 - 7
Makefile.am

@@ -62,13 +62,9 @@ test: all
 # eventdns.[hc], tinytest*.[ch]
 check-spaces:
 	./contrib/checkSpace.pl -C                    \
-		src/common/*.h			      \
-		src/common/[^asO]*.c		      \
-		src/common/address.c		      \
-		src/or/[^e]*.[ch]		      \
-		src/or/eventdns_tor.h		      \
-		src/test/test*.[ch]		      \
-		src/test/[^t]*.[ch]		      \
+		src/common/*.[ch]		      \
+		src/or/*.[ch]			      \
+		src/test/*.[ch]			      \
 		src/tools/*.[ch]		      \
 		src/tools/tor-fw-helper/*.[ch]