diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-11 17:30:57 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-11 17:30:57 (GMT) |
commit | 714b3018f34fbaa75de9395418a6354debe12f76 (patch) | |
tree | e9a32ba4d86839fbed5f813a0ec26a1bb830f7b9 /fortran/src/Makefile.in | |
parent | 59a0d7d806c4363d062f53d38101b3a1cbe0e5d9 (diff) | |
download | hdf5-714b3018f34fbaa75de9395418a6354debe12f76.zip hdf5-714b3018f34fbaa75de9395418a6354debe12f76.tar.gz hdf5-714b3018f34fbaa75de9395418a6354debe12f76.tar.bz2 |
[svn-r2668] Purpose:
Bug Fix
Description:
Wasn't picking up the header files from the proper source and
build directories. There were some funky things happening in
there.
Solution:
Put the correct path in.
Platforms tested:
Modi4
Diffstat (limited to 'fortran/src/Makefile.in')
-rw-r--r-- | fortran/src/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in index 3955d9f..b723933 100644 --- a/fortran/src/Makefile.in +++ b/fortran/src/Makefile.in @@ -9,8 +9,8 @@ top_builddir=../.. srcdir=@srcdir@ @COMMENCE@ -hdf5_builddir=$(top_builddir)/../src -hdf5_srcdir=$(top_srcdir)/src +hdf5_srcdir=$(top_srcdir)/../src +hdf5_builddir=$(top_builddir)/src TRACE=perl $(top_srcdir)/bin/trace |