diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-15 16:06:32 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-15 16:06:32 (GMT) |
commit | 80429f7f45c9ff631d2c1524ae9efb649bf8ebe1 (patch) | |
tree | ae2315b312a6c802a5e0103875c67ab18aa5c712 /c++/examples | |
parent | 8dcb33c00ecaaa6f885a31aad0122632e4340e83 (diff) | |
download | hdf5-80429f7f45c9ff631d2c1524ae9efb649bf8ebe1.zip hdf5-80429f7f45c9ff631d2c1524ae9efb649bf8ebe1.tar.gz hdf5-80429f7f45c9ff631d2c1524ae9efb649bf8ebe1.tar.bz2 |
[svn-r2914] Purpose:
Bug fix
Description:
libtool complained that the library name didn't have a ``lib''
prefix. Also, the $(top_srcdir) macro points to the top of the
c++/ directory, which was messing up the -I$(top_srcdir)/src
stuff. It needed to be changed to the correct value.
Solution:
Made it so
Platforms tested:
Linux
Diffstat (limited to 'c++/examples')
-rw-r--r-- | c++/examples/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in index 20d5707..f767c35 100644 --- a/c++/examples/Makefile.in +++ b/c++/examples/Makefile.in @@ -13,8 +13,8 @@ hdf5_builddir=$(top_builddir)/src ## Add include directory to the C++ preprocessor flags and the hdf5 ## library to the library list. -LIB=../src/hdf5_cpp.la -CPPFLAGS=-I. -I$(srcdir) -I../src -I$(top_srcdir)/src @CPPFLAGS@ +LIB=../src/libhdf5_cpp.la +CPPFLAGS=-I. -I$(srcdir) -I../src -I$(top_srcdir)/../src @CPPFLAGS@ LIBHDF5=$(hdf5_builddir)/libhdf5.la ## List all source files here. The list of object files will be |