summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1998-11-16 05:06:02 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1998-11-16 05:06:02 (GMT)
commitc3570e984a10701abcef85f3ada67b76d602c4cf (patch)
treee7d7da34248d6b3b261b0648c9e2488720589ae8
parent855248c589d222372d8161483aacb5802955388a (diff)
downloadhdf5-c3570e984a10701abcef85f3ada67b76d602c4cf.zip
hdf5-c3570e984a10701abcef85f3ada67b76d602c4cf.tar.gz
hdf5-c3570e984a10701abcef85f3ada67b76d602c4cf.tar.bz2
[svn-r913] Added $(LDFLAGS) to the make command for H5detect.
Tested on O2K in both parallel and serial modes.
-rw-r--r--src/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index bf5dd48..d6629a6 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -48,6 +48,6 @@ H5Tinit.c: H5detect
# no $(LIB) in the action below since that's being made now.
H5detect: H5detect.o
- $(CC) $(CFLAGS) -o $@ H5detect.o $(LIBS)
+ $(CC) $(CFLAGS) -o $@ H5detect.o $(LDFLAGS) $(LIBS)
@CONCLUDE@