svn commit: r328388 - head/share/man/man8

Li-Wen Hsu lwhsu at FreeBSD.org
Thu Jan 25 05:15:45 UTC 2018


Author: lwhsu (ports committer)
Date: Thu Jan 25 05:15:44 2018
New Revision: 328388
URL: https://svnweb.freebsd.org/changeset/base/328388

Log:
  Fix manual page install on non-amd64
  
  Reviewed by:	emaste, imp
  Differential Revision:	https://reviews.freebsd.org/D14038

Modified:
  head/share/man/man8/Makefile

Modified: head/share/man/man8/Makefile
==============================================================================
--- head/share/man/man8/Makefile	Thu Jan 25 02:52:44 2018	(r328387)
+++ head/share/man/man8/Makefile	Thu Jan 25 05:15:44 2018	(r328388)
@@ -29,14 +29,15 @@ MLINKS= \
 .if ${MK_NIS} != "no"
 MAN+=	yp.8
 
-MLINKS+=uefi.8 efi.8 \
-	yp.8 NIS.8 \
+MLINKS+=yp.8 NIS.8 \
 	yp.8 nis.8 \
 	yp.8 YP.8
 .endif
 
 .if ${MACHINE_CPUARCH} == "amd64"
 _uefi.8= uefi.8
+
+MLINKS+=uefi.8 efi.8
 .endif
 
 .include <bsd.prog.mk>


More information about the svn-src-all mailing list