diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-01 16:50:25 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-01 16:50:25 (GMT) |
commit | 4a7a715c0d9b181ee0c98f24442208026a2f6d5c (patch) | |
tree | a04bb86eae75ea9763fe2cd96df8120f638e44cd /c++/examples | |
parent | 570713c28918bedb47733d3653a2f2f26e59f9bd (diff) | |
download | hdf5-4a7a715c0d9b181ee0c98f24442208026a2f6d5c.zip hdf5-4a7a715c0d9b181ee0c98f24442208026a2f6d5c.tar.gz hdf5-4a7a715c0d9b181ee0c98f24442208026a2f6d5c.tar.bz2 |
[svn-r3049] Purpose:
YABF
Description:
Needed to add the source directory for the built HDF5 library.
Solution:
Added -I../../src to the compile flags.
Platforms tested:
Linux
Diffstat (limited to 'c++/examples')
-rw-r--r-- | c++/examples/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in index 4376b4a..a11dc08 100644 --- a/c++/examples/Makefile.in +++ b/c++/examples/Makefile.in @@ -14,7 +14,7 @@ hdf5_builddir=$(top_builddir)/src ## Add include directory to the C++ preprocessor flags and the hdf5 ## library to the library list. LIB=../src/libhdf5_cpp.la -CPPFLAGS=-I. -I$(srcdir) -I../src -I$(top_srcdir)/src -I$(srcdir)/../src @CPPFLAGS@ +CPPFLAGS=-I. -I$(srcdir) -I../src -I../../src -I$(top_srcdir)/src -I$(srcdir)/../src @CPPFLAGS@ LIBHDF5=$(hdf5_builddir)/libhdf5.la ## List all source files here. The list of object files will be |