diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-10-12 17:16:20 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-10-12 17:16:20 -0400 |
commit | 286b6df03862e7eaf41ce97ccddb2cd6913bfc5f (patch) | |
tree | 8dd400c7216f564d6421b0ddcc0a9d5ff1671950 | |
parent | 48b3ae8fe02a526f5d84a1823731ac78433e0067 (diff) | |
download | tor-286b6df03862e7eaf41ce97ccddb2cd6913bfc5f.tar tor-286b6df03862e7eaf41ce97ccddb2cd6913bfc5f.tar.gz |
Simplify list of files that get whitespace-checked
The rule is simple: Everything not in src/ext!
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index 787be4951..2854763d2 100644 --- a/Makefile.am +++ b/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] |