svn commit: r209992 - head/share/man/man4

Nathan Whitehorn nwhitehorn at FreeBSD.org
Tue Jul 13 12:51:03 UTC 2010


Author: nwhitehorn
Date: Tue Jul 13 12:51:02 2010
New Revision: 209992
URL: http://svn.freebsd.org/changeset/base/209992

Log:
  Install arch-specific manpages by MACHINE_CPUARCH, not MACHINE_ARCH.

Modified:
  head/share/man/man4/Makefile

Modified: head/share/man/man4/Makefile
==============================================================================
--- head/share/man/man4/Makefile	Tue Jul 13 12:47:31 2010	(r209991)
+++ head/share/man/man4/Makefile	Tue Jul 13 12:51:02 2010	(r209992)
@@ -678,8 +678,8 @@ MLINKS+=lindev.4 full.4
 _atp.4=		atp.4
 .endif
 
-.if exists(${.CURDIR}/man4.${MACHINE_ARCH})
-SUBDIR=	man4.${MACHINE_ARCH}
+.if exists(${.CURDIR}/man4.${MACHINE_CPUARCH})
+SUBDIR=	man4.${MACHINE_CPUARCH}
 .endif
 
 .include <bsd.prog.mk>


More information about the svn-src-all mailing list