diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-07-28 18:11:22 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-07-28 18:11:22 +0000 |
commit | 63593acfd35a9eb51c81f0c23d0b3a0325b1e3d0 (patch) | |
tree | 65bdb9d6f9082faaed76e8bc77e6ca42fde89b3f /fixincludes/check.tpl | |
parent | aa0bf078225a87ccd4e4eb1862c5a08593ae969f (diff) | |
download | linaro-gcc-63593acfd35a9eb51c81f0c23d0b3a0325b1e3d0.tar.gz linaro-gcc-63593acfd35a9eb51c81f0c23d0b3a0325b1e3d0.tar.bz2 linaro-gcc-63593acfd35a9eb51c81f0c23d0b3a0325b1e3d0.zip |
2015-07-28 Eric Gallager <egall@gwmail.gwu.edu>
* check.tpl: Ignore .DS_Store directories.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@226317 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'fixincludes/check.tpl')
-rw-r--r-- | fixincludes/check.tpl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fixincludes/check.tpl b/fixincludes/check.tpl index 0d1f44431fc..ffd2b66c7fb 100644 --- a/fixincludes/check.tpl +++ b/fixincludes/check.tpl @@ -141,9 +141,8 @@ echo $exitok` cd $TESTBASE -find * -type f -print | \ -fgrep -v 'CVS/' | \ -fgrep -v '.svn/' > ${TESTDIR}/LIST +find * -type f ! -name .DS_Store ! -name CVS ! -name .svn -print \ +> ${TESTDIR}/LIST exitok=` exec < ${TESTDIR}/LIST |