diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2009-10-01 19:51:57 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2009-10-01 19:51:57 (GMT) |
commit | 1abb6b133b54af0cdfa277b4f12304d3e88331bf (patch) | |
tree | b9d31d2a4cf59e1ff6b25affb094e308eb864b26 /src/Makefile.in | |
parent | 9a1a404e5abab4dbff5a96de5983e93e2a419ec6 (diff) | |
download | hdf5-1abb6b133b54af0cdfa277b4f12304d3e88331bf.zip hdf5-1abb6b133b54af0cdfa277b4f12304d3e88331bf.tar.gz hdf5-1abb6b133b54af0cdfa277b4f12304d3e88331bf.tar.bz2 |
[svn-r17571] Purpose:
Makefile Bug Fix
Description:
Added $(EXEEXT) extension to H5detect when it's executed to generate
H5Tinit.c so it works correctly on platforms that require the full
extension when running executables.
Tested:
h5committest, mingw, and user-verified (via submitted patch).
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 4fc229a..ef006a7 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -1222,7 +1222,7 @@ help: H5Tinit.c: H5detect$(EXEEXT) LD_LIBRARY_PATH="$$LD_LIBRARY_PATH`echo $(LDFLAGS) | \ sed -e 's/-L/:/g' -e 's/ //g'`" \ - $(RUNSERIAL) ./H5detect > H5Tinit.c || \ + $(RUNSERIAL) ./H5detect$(EXEEXT) > H5Tinit.c || \ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ ($(RM) $@ ; exit 1) |