diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2007-02-14 22:23:14 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2007-02-14 22:23:14 (GMT) |
commit | 93106a5ed1ec95a5d5919aafb3767e5fc0e0e0e0 (patch) | |
tree | e2c2594a2d0d7e741cea7cbc273938ea06e647ea /bin/chkcopyright | |
parent | e2af691388a8c0c1a64f3c51a880184d2836c67e (diff) | |
download | hdf5-93106a5ed1ec95a5d5919aafb3767e5fc0e0e0e0.zip hdf5-93106a5ed1ec95a5d5919aafb3767e5fc0e0e0e0.tar.gz hdf5-93106a5ed1ec95a5d5919aafb3767e5fc0e0e0e0.tar.bz2 |
[svn-r13310] Aded recognition of Perl script file s (*.pl) and Makefile.dist.
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 6893255..623c742 100755 --- a/bin/chkcopyright +++ b/bin/chkcopyright @@ -764,7 +764,11 @@ while read file; do *.sh | *.sh.in ) SHELL_FILE ${file} ;; - *Makefile | *Makefile.in | *Makefile.am ) + *.pl ) + # Perl script files are similar to Shell files + SHELL_FILE ${file} + ;; + *Makefile | *Makefile.in | *Makefile.am | Makefile.dist ) MAKE_FILE ${file} ;; *.bat | *.BAT ) |