diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-09-14 20:11:43 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-09-14 20:11:43 (GMT) |
commit | b5eaacb9113f15ed517bdc3a4e5e28f577c5ca61 (patch) | |
tree | b4fc35321095170372ca9bdb0ac36591822b7b1f /autogen.sh | |
parent | 4b748365dfb69e6f1f5ae99379f39e3db858889a (diff) | |
download | hdf5-b5eaacb9113f15ed517bdc3a4e5e28f577c5ca61.zip hdf5-b5eaacb9113f15ed517bdc3a4e5e28f577c5ca61.tar.gz hdf5-b5eaacb9113f15ed517bdc3a4e5e28f577c5ca61.tar.bz2 |
[svn-r27775] Undo of r27655
Removes .pl extension from Perl scripts. This may be returned in the future,
but it's best to keep the script names unchanged while we merge with the
trunk.
Tested on: h5committest
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.pl src/H5*.c || exit 1 +bin/trace 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.pl src/H5err.txt || exit 1 +bin/make_err 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.pl src/H5vers.txt || exit 1 +bin/make_vers 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.pl src/H5overflow.txt || exit 1 +bin/make_overflow src/H5overflow.txt || exit 1 # Run flex and bison # automatically generates hl/src/H5LTanalyze.c and hl/src/H5LTparse.c |