user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
From: Eric Wong <e@80x24.org>
To: meta@public-inbox.org
Subject: [PATCH 2/2] doc: don't attempt to install non-existent manpages
Date: Fri, 29 Nov 2019 11:09:14 +0000	[thread overview]
Message-ID: <20191129110914.4306-3-e@80x24.org> (raw)
In-Reply-To: <20191129110914.4306-1-e@80x24.org>

More effort needs to be made to get the full doc build
portable across different "make" implementations.  I assume
BSD users don't want GNU make installed, at all...
---
 Documentation/include.mk | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Documentation/include.mk b/Documentation/include.mk
index 651fdf30..b5fe21da 100644
--- a/Documentation/include.mk
+++ b/Documentation/include.mk
@@ -81,10 +81,10 @@ install-man: man
 	$(INSTALL) -d -m 755 $(DESTDIR)$(man5dir)
 	$(INSTALL) -d -m 755 $(DESTDIR)$(man7dir)
 	$(INSTALL) -d -m 755 $(DESTDIR)$(man8dir)
-	$(INSTALL) -m 644 $(man1) $(DESTDIR)$(man1dir)
-	$(INSTALL) -m 644 $(man5) $(DESTDIR)$(man5dir)
-	$(INSTALL) -m 644 $(man7) $(DESTDIR)$(man7dir)
-	$(INSTALL) -m 644 $(man8) $(DESTDIR)$(man8dir)
+	test -z "$(man1)" || $(INSTALL) -m 644 $(man1) $(DESTDIR)$(man1dir)
+	test -z "$(man5)" || $(INSTALL) -m 644 $(man5) $(DESTDIR)$(man5dir)
+	test -z "$(man7)" || $(INSTALL) -m 644 $(man7) $(DESTDIR)$(man7dir)
+	test -z "$(man8)" || $(INSTALL) -m 644 $(man8) $(DESTDIR)$(man8dir)
 
 doc_install :: install-man
 

  parent reply	other threads:[~2019-11-29 11:09 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-29 11:09 [PATCH 0/2] minor fixes for OpenBSD make(1) Eric Wong
2019-11-29 11:09 ` [PATCH 1/2] Makefile.PL: avoid non-portable $< Eric Wong
2019-11-29 11:09 ` Eric Wong [this message]
2019-12-01 10:50 ` [PATCH] build: support doc generation w/o GNU make Eric Wong
2019-12-12  8:04   ` [PATCH 2/1] Makefile.PL: fix "dsyn" target Eric Wong

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://public-inbox.org/README

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191129110914.4306-3-e@80x24.org \
    --to=e@80x24.org \
    --cc=meta@public-inbox.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).