summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2003-02-14 21:17:16 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2003-02-14 21:17:16 (GMT)
commit0f125bf0fc16748f69161ef405ea7ec2123d1371 (patch)
tree8d299ccd2222632ec516d9222f36703d905e5573 /config
parentb40eef5c9692fbd0f38a262c1a2caef12a2b4cd2 (diff)
downloadhdf5-0f125bf0fc16748f69161ef405ea7ec2123d1371.zip
hdf5-0f125bf0fc16748f69161ef405ea7ec2123d1371.tar.gz
hdf5-0f125bf0fc16748f69161ef405ea7ec2123d1371.tar.bz2
[svn-r6404] Purpose:
Bug Fix (Bug #806) Description: When compiling/installing with the command "make install" (without performing a "make" beforehand) the tools weren't being made. This was because the `install' command in the Makefiles only relied upon public libraries, not private ones (which the one in the tools directory is). Solution: Had the `install' command be dependent upon an "AUX_LIB" macro which includes libraries which are needed but aren't distributed (that is, they're staticly compiled). Platforms tested: Linux
Diffstat (limited to 'config')
-rw-r--r--config/conclude.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/conclude.in b/config/conclude.in
index 1605a72..1381cbb 100644
--- a/config/conclude.in
+++ b/config/conclude.in
@@ -100,7 +100,7 @@ $(EXAMPLEDIR):
## Install the library, the public header files, and public programs.
##
-install: $(PUB_LIB) $(PUB_HDR) $(PUB_PROGS) $(libdir) $(includedir) $(bindir)
+install: $(AUX_LIB) $(PUB_LIB) $(PUB_HDR) $(PUB_PROGS) $(libdir) $(includedir) $(bindir)
@for f in X $(PUB_LIB); do \
if test $$f != X; then \
($(LT_INSTALL_LIB) $$f $(libdir)/. || exit 1); \