diff options
author | David Young <dyoung@hdfgroup.org> | 2019-11-13 19:04:26 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2019-11-13 19:04:58 (GMT) |
commit | 4281d101c41f80a75143c0d40232383a81afc7f0 (patch) | |
tree | 042572fcba2823e0d815680c9cb5bbb75c7e4e91 /bin | |
parent | 07b59c0b63041f1be964aee2a27f5c748c29d688 (diff) | |
download | hdf5-4281d101c41f80a75143c0d40232383a81afc7f0.zip hdf5-4281d101c41f80a75143c0d40232383a81afc7f0.tar.gz hdf5-4281d101c41f80a75143c0d40232383a81afc7f0.tar.bz2 |
Make this script work on hosts where PERL is not installed at
/usr/bin/perl.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/warnhist | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/warnhist b/bin/warnhist index 7e56246..a8dcd97 100755 --- a/bin/warnhist +++ b/bin/warnhist @@ -1,5 +1,6 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl require 5.003; +use warnings; # # Copyright by The HDF Group. |