[svn-r11624] Purpose:

Added *.jpg and *.hdf5 as binary data files to be ignored.

Platforms tested:
heping.
This commit is contained in:
Albert Cheng 2005-10-29 17:05:10 -05:00
parent c8b3b907b6
commit aacf40d541

View File

@ -446,10 +446,14 @@ while read file; do
*.sh | *.sh.in | *Makefile | *Makefile.in | *Makefile.am )
SHELL_FILE ${file}
;;
*.h5 )
*.h5 | *.hdf5 )
# Ignore HDF5 data files
continue
;;
*.jpg )
# Ignore binary data files
continue
;;
*CVS/* )
# Ignore CVS control files.
continue