Mercurial > hg > aimc
annotate scripts/lint_all.sh @ 25:e361baf69120
-Added a bit of junk to try and build a bianry for OS X 10.4 in SConstruct
-Fixes to the FileList to build on linux - hopefully
author | tomwalters |
---|---|
date | Tue, 23 Feb 2010 21:51:11 +0000 |
parents | 01eba86df030 |
children |
rev | line source |
---|---|
tomwalters@14 | 1 #!/bin/bash |
tomwalters@17 | 2 find -E . -iregex ".*\.(h|cc|c)" | grep -v "ConvertUTF" | grep -v "SimpleIni" | xargs lint/cpplint.py --filter=-build/header_guard |
tomwalters@14 | 3 |