From owner-svn-src-head@freebsd.org Thu Jan 25 16:52:02 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A0E20EBEBC5; Thu, 25 Jan 2018 16:52:02 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0EB9986202; Thu, 25 Jan 2018 16:52:01 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (localhost [127.0.0.1]) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3) with ESMTP id w0PGprK8000744; Thu, 25 Jan 2018 08:51:53 -0800 (PST) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id w0PGpqrF000743; Thu, 25 Jan 2018 08:51:52 -0800 (PST) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201801251651.w0PGpqrF000743@pdx.rh.CN85.dnsmgr.net> Subject: Re: svn commit: r328388 - head/share/man/man8 In-Reply-To: <201801250515.w0P5FiLk008095@repo.freebsd.org> To: Li-Wen Hsu Date: Thu, 25 Jan 2018 08:51:52 -0800 (PST) CC: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Reply-To: rgrimes@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jan 2018 16:52:02 -0000 [ Charset UTF-8 unsupported, converting... ] > 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 Um, small technical nit, *efi is not amd64 only. There is a 32 bit efi spec that can apply to i386, and there is also arm using efi. Let me quote the wiki(sic): Processor compatibility As of version 2.5, processor bindings exist for Itanium, x86, x86-64, ARM (AArch32) and ARM64 (AArch64).[14] Only little-endian processors can be supported.[15] Unofficial UEFI support is under development for POWERPC64 by implementing TianoCore on top of OPAL,[16] the OpenPOWER abstraction layer, running in little-endian mode.[17] Similar projects exist for MIPS[18] and RISC-V.[19]. As of UEFI 2.7, RISC-V processor bindings have been officially established for 32, 64 and 128-bit modes.[20] I had already pointed out on the commit list that Ed's r328378 was in error in that it mangled the NIS/yp links with the *efi links within minutes of the commit happening, kinda confused why this had to go to a differential to fix what was a rather trivial man link error. > 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 > > -- Rod Grimes rgrimes@freebsd.org