Module Name: src Committed By: rmind Date: Thu Jul 8 20:32:12 UTC 2010
Modified Files: src/sys/modules/procfs: Makefile Log Message: Sync procfs module with kernel change for x86 MD. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/modules/procfs/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/procfs/Makefile diff -u src/sys/modules/procfs/Makefile:1.1 src/sys/modules/procfs/Makefile:1.2 --- src/sys/modules/procfs/Makefile:1.1 Sat Jun 28 16:11:36 2008 +++ src/sys/modules/procfs/Makefile Thu Jul 8 20:32:12 2010 @@ -1,10 +1,14 @@ -# $NetBSD: Makefile,v 1.1 2008/06/28 16:11:36 rumble Exp $ +# $NetBSD: Makefile,v 1.2 2010/07/08 20:32:12 rmind Exp $ .include "../Makefile.inc" .PATH: ${S}/miscfs/procfs ${S} ${S}/arch/${MACHINE}/${MACHINE} \ ${S}/arch/${MACHINE_CPU}/${MACHINE_CPU} +.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" +.PATH: ${S}/arch/x86/x86 +.endif + KMOD= procfs SRCS= procfs_ctl.c procfs_note.c procfs_status.c procfs_subr.c \ procfs_vfsops.c procfs_vnops.c procfs_cmdline.c procfs_linux.c \