diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-01 15:46:54 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-01 15:46:54 (GMT) |
commit | f6f5fc0c4534b847aef88e6a448b23f2c434daa3 (patch) | |
tree | e7320bbd379e0e05d8762921fe567add1220c027 /c++/examples | |
parent | c834f719ef5dcb6cca3bef9fb3260c22ebc2867f (diff) | |
download | hdf5-f6f5fc0c4534b847aef88e6a448b23f2c434daa3.zip hdf5-f6f5fc0c4534b847aef88e6a448b23f2c434daa3.tar.gz hdf5-f6f5fc0c4534b847aef88e6a448b23f2c434daa3.tar.bz2 |
[svn-r3047] Purpose:
Bug fix
Description:
When building in a different directory, we weren't picking up the
header files correctly. The -I flag wasn't pointing to the
correct place.
Solution:
Changed the -I flag to point to the C++ source directory.
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 376bd2a..d41d231 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 @CPPFLAGS@ +CPPFLAGS=-I. -I$(srcdir) -I../src -I$(srcdir)/../src @CPPFLAGS@ LIBHDF5=$(hdf5_builddir)/libhdf5.la ## List all source files here. The list of object files will be |