Skip to content

Commit

Permalink
2015-07-28 Eric Gallager <egall@gwmail.gwu.edu>
Browse files Browse the repository at this point in the history
	* check.tpl: Ignore .DS_Store directories.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@226317 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
mrs committed Jul 28, 2015
1 parent aa0bf07 commit 63593ac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions fixincludes/ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 2 additions & 3 deletions fixincludes/check.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 63593ac

Please sign in to comment.