diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-09-01 16:28:05 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-09-01 16:28:05 (GMT) |
commit | 77525ea95d9a63e6a006fed055d964568eb9df93 (patch) | |
tree | b04d5d861a45b20739affbc35a9a59b2c2c15330 /autogen.sh | |
parent | d2cbacb94588f1a27e08e1b12b65c25d81d842d3 (diff) | |
download | hdf5-77525ea95d9a63e6a006fed055d964568eb9df93.zip hdf5-77525ea95d9a63e6a006fed055d964568eb9df93.tar.gz hdf5-77525ea95d9a63e6a006fed055d964568eb9df93.tar.bz2 |
[svn-r27655] Add .pl extension to Perl scripts in bin (part of HDFFV-9513)
This makes things easier on Windows, where we will have to run
Perl scripts as a part of CMake.
Tested on: jam
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -366,28 +366,28 @@ echo # have no effect on files that don't have HDF5 API macros in them. echo echo "Running trace script:" -bin/trace src/H5*.c || exit 1 +bin/trace.pl src/H5*.c || exit 1 # Run make_err # make_err automatically generates the H5E headers that create error message # types for HDF5. echo echo "Running error generation script:" -bin/make_err src/H5err.txt || exit 1 +bin/make_err.pl src/H5err.txt || exit 1 # Run make_vers # make_vers automatically generates the public headers that define the API version # macros for HDF5. echo echo "Running API version generation script:" -bin/make_vers src/H5vers.txt || exit 1 +bin/make_vers.pl src/H5vers.txt || exit 1 # Run make_overflow # make_overflow automatically generates macros for detecting overflows for type # conversion. echo echo "Running overflow macro generation script:" -bin/make_overflow src/H5overflow.txt || exit 1 +bin/make_overflow.pl src/H5overflow.txt || exit 1 # Run flex and bison # automatically generates hl/src/H5LTanalyze.c and hl/src/H5LTparse.c |