diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-10-29 22:05:10 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-10-29 22:05:10 (GMT) |
commit | aacf40d541913047c727f206cc066b068a42a8d8 (patch) | |
tree | b5100c5f75f7a764bd451df2300502419bf76666 /bin/chkcopyright | |
parent | c8b3b907b66b4604c43247ab7710a2d562512e1d (diff) | |
download | hdf5-aacf40d541913047c727f206cc066b068a42a8d8.zip hdf5-aacf40d541913047c727f206cc066b068a42a8d8.tar.gz hdf5-aacf40d541913047c727f206cc066b068a42a8d8.tar.bz2 |
[svn-r11624] Purpose:
Added *.jpg and *.hdf5 as binary data files to be ignored.
Platforms tested:
heping.
Diffstat (limited to 'bin/chkcopyright')
-rwxr-xr-x | bin/chkcopyright | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/chkcopyright b/bin/chkcopyright index d46ad4c..00cf7ee 100755 --- a/bin/chkcopyright +++ b/bin/chkcopyright @@ -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 |