Module Name:    src
Committed By:   mbalmer
Date:           Thu Aug 11 12:03:06 UTC 2011

Modified Files:
        src/sys/modules: Makefile

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


To generate a diff of this commit:
cvs rdiff -u -r1.87 -r1.88 src/sys/modules/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/modules/Makefile
diff -u src/sys/modules/Makefile:1.87 src/sys/modules/Makefile:1.88
--- src/sys/modules/Makefile:1.87	Thu Aug 11 07:33:25 2011
+++ src/sys/modules/Makefile	Thu Aug 11 12:03:06 2011
@@ -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

Reply via email to