diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2010-07-13 12:51:02 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2010-07-13 12:51:02 +0000 |
commit | 71f078a5eaab19f9a4d5cf7f59a89268f97c7938 (patch) | |
tree | 5fb4d567591ad34ae60f2d7302da9d2b4a8a5f51 /share | |
parent | 07bff8843eee2c79cfcf30977a767f3319cbb4ad (diff) | |
download | FreeBSD-src-71f078a5eaab19f9a4d5cf7f59a89268f97c7938.zip FreeBSD-src-71f078a5eaab19f9a4d5cf7f59a89268f97c7938.tar.gz |
Install arch-specific manpages by MACHINE_CPUARCH, not MACHINE_ARCH.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man4/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index df87d72..5420e55 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -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> |