summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2005-09-07 18:51:35 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2005-09-07 18:51:35 (GMT)
commitedfb6b70e2d4beb124a26964ad6a081041af3530 (patch)
tree98eb4a8d5abe7a5cc6bcc1dde642077c4a2e2182 /src
parent8acac62da8cadec38b0c2242de0f7af4601e06c4 (diff)
downloadhdf5-edfb6b70e2d4beb124a26964ad6a081041af3530.zip
hdf5-edfb6b70e2d4beb124a26964ad6a081041af3530.tar.gz
hdf5-edfb6b70e2d4beb124a26964ad6a081041af3530.tar.bz2
[svn-r11361] Purpose:
Bug fix Description: Cygwin was failing (seemingly only when I built in parallel) when it couldn't find or build H5detect. Fixed a dependency. Solution: H5init.c was depending on H5detect instead of H5detect$(EXEEXT). On Cygwin, applications end in .exe ! Platforms tested: mir, cygwin (finrod)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/Makefile.am2
-rw-r--r--src/Makefile.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 479e164..046800f 100755
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -95,7 +95,7 @@ $(top_srcdir)/src/H5Edefin.h: $(top_srcdir)/src/H5err.txt
# Things should have been all set during H5detect making.
# Remove the generated .c file if errors occur unless HDF5_Make_Ignore
# is set to ignore the error.
-H5Tinit.c: H5detect
+H5Tinit.c: H5detect$(EXEEXT)
LD_LIBRARY_PATH="$$LD_LIBRARY_PATH`echo $(LDFLAGS) | \
sed -e 's/-L/:/g' -e 's/ //g'`" \
$(RUNSERIAL) ./H5detect > H5Tinit.c || \
diff --git a/src/Makefile.in b/src/Makefile.in
index 7c7f4ff..27f5dcb 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -935,7 +935,7 @@ $(top_srcdir)/src/H5Edefin.h: $(top_srcdir)/src/H5err.txt
# Things should have been all set during H5detect making.
# Remove the generated .c file if errors occur unless HDF5_Make_Ignore
# is set to ignore the error.
-H5Tinit.c: H5detect
+H5Tinit.c: H5detect$(EXEEXT)
LD_LIBRARY_PATH="$$LD_LIBRARY_PATH`echo $(LDFLAGS) | \
sed -e 's/-L/:/g' -e 's/ //g'`" \
$(RUNSERIAL) ./H5detect > H5Tinit.c || \