diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-12-08 20:50:25 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-12-08 20:50:25 (GMT) |
commit | 2fb49109c4a006e6f464972f205aef2d6ac80def (patch) | |
tree | c5db3e86c23a5c95a8de18a0c40faa2af7562829 | |
parent | dd7c7944690a1d9958069b925231c7cd6623857c (diff) | |
download | hdf5-2fb49109c4a006e6f464972f205aef2d6ac80def.zip hdf5-2fb49109c4a006e6f464972f205aef2d6ac80def.tar.gz hdf5-2fb49109c4a006e6f464972f205aef2d6ac80def.tar.bz2 |
[svn-r9645] Purpose:
bug fix
Description:
the makefile was not using the $(srcdir) on some library path
Solution:
Platforms tested:
Misc. update:
-rw-r--r-- | hl/fortran/test/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hl/fortran/test/Makefile.in b/hl/fortran/test/Makefile.in index 2e41ab4..20c8fe2 100644 --- a/hl/fortran/test/Makefile.in +++ b/hl/fortran/test/Makefile.in @@ -27,13 +27,13 @@ CPPFLAGS=-I. -I$(hdf5_builddir) -I$(hdf5_srcdir) @CPPFLAGS@ ## Add include directory to the C preprocessor flags and the h5test and hdf5 ## libraries to the library list. ## C hdf5 -HDF5LIB=$(top_srcdir)/src/libhdf5.la +HDF5LIB=$(top_builddir)/src/libhdf5.la ## fortran hdf5 -FLIB=$(top_srcdir)/fortran/src/libhdf5_fortran.la +FLIB=$(top_builddir)/fortran/src/libhdf5_fortran.la ## C hl -HL_LIB=$(top_srcdir)/hl/src/libhdf5_hl.la +HL_LIB=$(top_builddir)/hl/src/libhdf5_hl.la ## fortran hl -HL_FLIB=$(top_srcdir)/hl/fortran/src/libhdf5hl_fortran.la +HL_FLIB=$(top_builddir)/hl/fortran/src/libhdf5hl_fortran.la TCLIB= |