summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2002-02-18 15:46:00 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2002-02-18 15:46:00 (GMT)
commit3c0f3ca9692942a2eb965bba5cbfec95f9834592 (patch)
treefb6b45d15c900de89ab59a09b0634715b008abd9 /config
parent30b5ed622170f56d8e13ccfea880519ba3927bf7 (diff)
downloadhdf5-3c0f3ca9692942a2eb965bba5cbfec95f9834592.zip
hdf5-3c0f3ca9692942a2eb965bba5cbfec95f9834592.tar.gz
hdf5-3c0f3ca9692942a2eb965bba5cbfec95f9834592.tar.bz2
[svn-r4981] Purpose:
Bug fix Description: The -lnoop library was specified in $LDFLAS when it should have been in $LIBS. In the past, human just put it in the back and repeated it enough times in the link statement till it worked. The tool h5cc exposed this error since the $LDFLAGS is put in front of all libraries, including libhdf5.a. That won't work. Solution: Moved the specification of -lnoop to $LIBS. Platforms tested: Tflops
Diffstat (limited to 'config')
-rw-r--r--config/intel-osf12
1 files changed, 1 insertions, 1 deletions
diff --git a/config/intel-osf1 b/config/intel-osf1
index d6411cd..bbe4c70 100644
--- a/config/intel-osf1
+++ b/config/intel-osf1
@@ -21,7 +21,7 @@ AR=${AR:-xar}
RANLIB=:
# Additional libraries
-LDFLAGS="$LDFLAGS -lnoop_stubs"
+LIBS="$LIBS -lnoop_stubs"
# How to run serial and parallel test programs
RUNSERIAL="yod -sz 1"