From f336257bc87ceedbb6954b054320eaa6634bec6b Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 22 Mar 2001 13:11:40 -0500 Subject: [svn-r3689] Purpose: Bug Fix Description: Added the hack which is in the 1.5 branch that allows the documents to have "subdirectories" which it installs... --- config/conclude.in | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/config/conclude.in b/config/conclude.in index 622cc65..d29fb5f 100644 --- a/config/conclude.in +++ b/config/conclude.in @@ -94,6 +94,11 @@ install-doc: $(PUB_DOCS) else \ mkdir $(DOCDIR) && chmod 755 $(DOCDIR); \ fi + @if test -d $(SUBDOCDIR) ; then \ + :; \ + else \ + mkdir $(SUBDOCDIR) && chmod 755 $(SUBDOCDIR); \ + fi @for d in X $(SUBDIRS); do \ if test $$d != X; then \ (set -x; cd $$d && $(MAKE) $@) || exit 1; \ @@ -109,6 +114,16 @@ install-doc: $(PUB_DOCS) fi; \ fi; \ done + @for f in X $(PUB_SUBDOCS); do \ + if test $$f != X; then \ + if test -f $$f; then \ + (set -x; $(INSTALL_DATA) $$f $(SUBDOCDIR)/. || exit 1); \ + else \ + (set -x; $(INSTALL_DATA) $(srcdir)/$$f $(SUBDOCDIR)/. || \ + exit 1); \ + fi; \ + fi; \ + done ## Removes those things that `make install' (would have) installed. uninstall: -- cgit v0.12