check.tpl: Ignore .DS_Store directories.
authorEric Gallager <egall@gwmail.gwu.edu>
Tue, 28 Jul 2015 18:11:22 +0000 (18:11 +0000)
committerMike Stump <mrs@gcc.gnu.org>
Tue, 28 Jul 2015 18:11:22 +0000 (18:11 +0000)
2015-07-28  Eric Gallager  <egall@gwmail.gwu.edu>

* check.tpl: Ignore .DS_Store directories.

From-SVN: r226317

fixincludes/ChangeLog
fixincludes/check.tpl

index 4ac5138ebdc3d875cc16f89775be26168b917160..e22e7c62c76e7fa9749778690c252a520e4c052d 100644 (file)
@@ -1,3 +1,7 @@
+2015-07-28  Eric Gallager  <egall@gwmail.gwu.edu>
+
+       * check.tpl: Ignore .DS_Store directories.
+
 2015-05-21  David Edelsohn  <dje.gcc@gmail.com>
 
        * inclhack.def (aix_externc): New fix.
index 0d1f44431fc55cc1bb265d25f4d6de22b717b4e3..ffd2b66c7fb02bcc95caf527b31201983b647ff5 100644 (file)
@@ -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