mirror of git://gcc.gnu.org/git/gcc.git
check.tpl: Ignore .DS_Store directories.
2015-07-28 Eric Gallager <egall@gwmail.gwu.edu> * check.tpl: Ignore .DS_Store directories. From-SVN: r226317
This commit is contained in:
parent
68aba1f6a8
commit
cfce04880a
|
|
@ -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>
|
2015-05-21 David Edelsohn <dje.gcc@gmail.com>
|
||||||
|
|
||||||
* inclhack.def (aix_externc): New fix.
|
* inclhack.def (aix_externc): New fix.
|
||||||
|
|
|
||||||
|
|
@ -141,9 +141,8 @@ echo $exitok`
|
||||||
|
|
||||||
cd $TESTBASE
|
cd $TESTBASE
|
||||||
|
|
||||||
find * -type f -print | \
|
find * -type f ! -name .DS_Store ! -name CVS ! -name .svn -print \
|
||||||
fgrep -v 'CVS/' | \
|
> ${TESTDIR}/LIST
|
||||||
fgrep -v '.svn/' > ${TESTDIR}/LIST
|
|
||||||
|
|
||||||
exitok=`
|
exitok=`
|
||||||
exec < ${TESTDIR}/LIST
|
exec < ${TESTDIR}/LIST
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue