Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/modules pwdog is not for all platforms, build only on i3...



details:   https://anonhg.NetBSD.org/src/rev/cd77228a6233
branches:  trunk
changeset: 768195:cd77228a6233
user:      mbalmer <mbalmer%NetBSD.org@localhost>
date:      Thu Aug 11 12:03:06 2011 +0000

description:
pwdog is not for all platforms, build only on i386, x86_64, and sparc64

diffstat:

 sys/modules/Makefile |  9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diffs (30 lines):

diff -r 5c080c7bc06b -r cd77228a6233 sys/modules/Makefile
--- a/sys/modules/Makefile      Thu Aug 11 11:21:06 2011 +0000
+++ b/sys/modules/Makefile      Thu Aug 11 12:03:06 2011 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.87 2011/08/11 07:33:25 mbalmer Exp $
+#      $NetBSD: Makefile,v 1.88 2011/08/11 12:03:06 mbalmer Exp $
 
 .include <bsd.own.mk>
 
@@ -49,7 +49,6 @@
 SUBDIR+=       ptyfs
 SUBDIR+=       puffs
 SUBDIR+=       putter
-SUBDIR+=       pwdog
 SUBDIR+=       scsiverbose
 SUBDIR+=       secmodel_bsd44
 SUBDIR+=       secmodel_overlay
@@ -181,6 +180,12 @@
 #SUBDIR+=      compat_svr4
 .endif
 
+.if ${MACHINE_ARCH} == "i386" || \
+    ${MACHINE_ARCH} == "x86_64" || \
+    ${MACHINE_ARCH} == "sparc64"
+SUBDIR+=       pwdog
+.endif
+
 .include <bsd.own.mk>
 
 # we need our device mapper for LVM



Home | Main Index | Thread Index | Old Index