about summary refs log tree commit homepage
path: root/Documentation
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-12-12 12:07:21 +0000
committerEric Wong <e@80x24.org>2016-12-12 12:07:21 +0000
commit46174e0f8c151dfb5a42723c865b4893f66e73b0 (patch)
tree9c0740bda4e365e429c5fc599594167e3ec76242 /Documentation
parent3043725a10eae59a71c25ba5e4d424a49326afd7 (diff)
downloadpublic-inbox-46174e0f8c151dfb5a42723c865b4893f66e73b0.tar.gz
We have these manpages, and will always have them, so stop
trying to pretend we're doing something about maintainability,
here.
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/include.mk16
1 files changed, 8 insertions, 8 deletions
diff --git a/Documentation/include.mk b/Documentation/include.mk
index 542273ff..28b69aed 100644
--- a/Documentation/include.mk
+++ b/Documentation/include.mk
@@ -47,14 +47,14 @@ man7dir = $(mandir)/man7
 man8dir = $(mandir)/man8
 
 install-man: man
-        test -z "$(man1)" || $(INSTALL) -d -m 755 $(DESTDIR)$(man1dir)
-        test -z "$(man5)" || $(INSTALL) -d -m 755 $(DESTDIR)$(man5dir)
-        test -z "$(man7)" || $(INSTALL) -d -m 755 $(DESTDIR)$(man7dir)
-        test -z "$(man8)" || $(INSTALL) -d -m 755 $(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)
+        $(INSTALL) -d -m 755 $(DESTDIR)$(man1dir)
+        $(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)
 
 doc_install :: install-man