Commit cfce0488 by Eric Gallager Committed by Mike Stump

check.tpl: Ignore .DS_Store directories.

2015-07-28  Eric Gallager  <egall@gwmail.gwu.edu>

	* check.tpl: Ignore .DS_Store directories.

From-SVN: r226317
parent 68aba1f6
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.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment