diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-11 17:09:28 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-11 17:09:28 (GMT) |
commit | 7d4886e379d95f1bac250f2d056ef96e161e30ce (patch) | |
tree | cd1d92322891e3557eeb8f3c5d883cb292aea4ed /fortran/src/Makefile.in | |
parent | c21431a67e5fdbdd762c3773b44b00f6cee79441 (diff) | |
download | hdf5-7d4886e379d95f1bac250f2d056ef96e161e30ce.zip hdf5-7d4886e379d95f1bac250f2d056ef96e161e30ce.tar.gz hdf5-7d4886e379d95f1bac250f2d056ef96e161e30ce.tar.bz2 |
[svn-r2664] Purpose:
*sigh*
Description:
Wasn't picking up a header file which is in the source directory.
Solution:
Changed some flags so that it does this now.
Platforms tested:
Modi4
Diffstat (limited to 'fortran/src/Makefile.in')
-rw-r--r-- | fortran/src/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in index fb86819..cc7b951 100644 --- a/fortran/src/Makefile.in +++ b/fortran/src/Makefile.in @@ -9,12 +9,13 @@ top_builddir=../.. srcdir=@srcdir@ @COMMENCE@ -hdf5_dir=$(top_builddir)/../src +hdf5_builddir=$(top_builddir)/../src +hdf5_builddir=$(top_srcdir)/../src TRACE=perl $(top_srcdir)/bin/trace ## Add `-I.' to the C preprocessor flags. -CPPFLAGS=-I. -I$(hdf5_dir) @CPPFLAGS@ +CPPFLAGS=-I. -I$(hdf5_builddir) -I$(hdf5_srcdir) @CPPFLAGS@ ## This is our main target LIB=libhdf5_fortran.la |