summaryrefslogtreecommitdiffstats
path: root/config/conclude.in
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-06-12 23:21:49 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-06-12 23:21:49 (GMT)
commit5dfaaad710dd6c689c574fa0671978dc1f981e38 (patch)
tree31a69779e9ea4a65f12abcd495d9fe456a99beba /config/conclude.in
parent8b1548cd6e954cbb2136a65b1e969b0d7d586c67 (diff)
downloadhdf5-5dfaaad710dd6c689c574fa0671978dc1f981e38.zip
hdf5-5dfaaad710dd6c689c574fa0671978dc1f981e38.tar.gz
hdf5-5dfaaad710dd6c689c574fa0671978dc1f981e38.tar.bz2
[svn-r5616] Purpose:
Bug Fix Description: If a platform doesn't have a GNU "install" program, then that install program might not support the "-d" option which creates directories for you. Solution: Use our "mkdirs" script instead to create a nest of subdirectories. Platforms tested: HP-UX, Linux
Diffstat (limited to 'config/conclude.in')
-rw-r--r--config/conclude.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/conclude.in b/config/conclude.in
index a0f800c..695bfd6 100644
--- a/config/conclude.in
+++ b/config/conclude.in
@@ -66,13 +66,13 @@ check test _test: tests
## Make installation directories directories if they don't exist.
$(libdir):
- $(INSTALL_DIR) $@
+ $(top_srcdir)/bin/mkdirs $@
$(includedir):
- $(INSTALL_DIR) $@
+ $(top_srcdir)/bin/mkdirs $@
$(bindir):
- $(INSTALL_DIR) $@
+ $(top_srcdir)/bin/mkdirs $@
## Install the library, the public header files, and public programs.
install: $(PUB_LIB) $(PUB_HDR) $(PUB_PROGS) $(libdir) $(includedir) $(bindir)
@@ -105,7 +105,7 @@ install-doc: $(PUB_DOCS)
@if test -d $(DOCDIR) ; then \
:; \
else \
- $(INSTALL_DIR) $(DOCDIR); \
+ mkdir $(DOCDIR) && chmod 755 $(DOCDIR); \
fi
@for d in X $(SUBDIRS); do \
if test $$d != X; then \