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++/test | |
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++/test')
-rw-r--r-- | c++/test/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in index de75fbe..59ad521 100644 --- a/c++/test/Makefile.in +++ b/c++/test/Makefile.in @@ -15,7 +15,7 @@ hdf5_builddir=$(top_builddir)/src ## libraries to the library list. LT_LINK_LIB=$(LT) --mode=link $(CXX) -rpath $(libdir) 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@ HDF5LIB=$(hdf5_builddir)/libhdf5.la TEST_PROGS_SRC= |