Date: Thu, 25 Jan 2018 08:51:52 -0800 (PST) From: "Rodney W. Grimes" <freebsd@pdx.rh.CN85.dnsmgr.net> To: Li-Wen Hsu <lwhsu@freebsd.org> Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r328388 - head/share/man/man8 Message-ID: <201801251651.w0PGpqrF000743@pdx.rh.CN85.dnsmgr.net> In-Reply-To: <201801250515.w0P5FiLk008095@repo.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
[ 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 <bsd.prog.mk> > > -- Rod Grimes rgrimes@freebsd.org
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801251651.w0PGpqrF000743>