summaryrefslogtreecommitdiffstats
path: root/c++/config/conclude.in
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2005-01-12 17:52:11 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2005-01-12 17:52:11 (GMT)
commit6b0c4026093e1cabf574b090927a5d1d2c32761c (patch)
tree4958c675b5508c70cb534e574ed4015c81d388e8 /c++/config/conclude.in
parent41fc9d427d007cdaf6bad150bd376ed655614be3 (diff)
downloadhdf5-6b0c4026093e1cabf574b090927a5d1d2c32761c.zip
hdf5-6b0c4026093e1cabf574b090927a5d1d2c32761c.tar.gz
hdf5-6b0c4026093e1cabf574b090927a5d1d2c32761c.tar.bz2
[svn-r9812] Purpose: Bug fix
Description: Confiure generated libhdf5.settings files in fortran/src and c++/src directories. File in the fortran/src directory was not installed; file in the c++/src directory was intalled As a result, libhdf5.settings from the src directory with the C settings and configuration summary was blown away. Also some temporary files were not cleaned in c++ directories. Solution: Modifed configure.in files to create fortran/src/libhdf5_fortran.settings and c++/src/libhdf5_cpp.settings files Ran autoconf on eirene to generate new configure files. Modified Makefile.in files to install *setting files. Note: I don't like the solution since *setting files are messy and libhdf5_cpp.settings lacks some information (there is no corresponding *.in file in the c++/src directory). Since we are moving to 1.8 anyway, I don't want to spend too much time on it, but we definitely should look carefully at those files and check that they are ok in 1.8. Platforms tested: eirene, cobalt, arabica Misc. update:
Diffstat (limited to 'c++/config/conclude.in')
-rw-r--r--c++/config/conclude.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/c++/config/conclude.in b/c++/config/conclude.in
index 1b62ea9..e5a50c7 100644
--- a/c++/config/conclude.in
+++ b/c++/config/conclude.in
@@ -72,8 +72,8 @@ install: $(PUB_LIB) $(PUB_HDR) $(PUB_PROGS) $(libdir) $(includedir) $(bindir)
($(LT_INSTALL_LIB) $$f $(libdir)/. || exit 1); \
fi; \
done
- @if test -f libhdf5.settings; then \
- (set -x; $(INSTALL_DATA) libhdf5.settings $(libdir)/. || exit 1); \
+ @if test -f libhdf5_cpp.settings; then \
+ (set -x; $(INSTALL_DATA) libhdf5_cpp.settings $(libdir)/. || exit 1); \
fi
@for f in X $(PUB_HDR); do \
if test $$f != X; then \
@@ -105,7 +105,7 @@ uninstall-examples:
## Removes those things that `make install' (would have) installed.
uninstall:
- @for f in libhdf5.settings $(LIB); do \
+ @for f in libhdf5_cpp.settings $(LIB); do \
$(LT_UNINSTALL) $(libdir)/$$f; \
done
@if test -n "$(PUB_HDR)"; then \