Date: Mon, 8 Oct 2012 14:08:13 +0000 (UTC) From: "David E. O'Brien" <obrien@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r241351 - head/sys/modules Message-ID: <201210081408.q98E8DFU013661@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: obrien Date: Mon Oct 8 14:08:13 2012 New Revision: 241351 URL: http://svn.freebsd.org/changeset/base/241351 Log: Restrict the module to varied environments. Modified: head/sys/modules/Makefile Modified: head/sys/modules/Makefile ============================================================================== --- head/sys/modules/Makefile Mon Oct 8 14:05:00 2012 (r241350) +++ head/sys/modules/Makefile Mon Oct 8 14:08:13 2012 (r241351) @@ -108,7 +108,7 @@ SUBDIR= \ fdc \ fdescfs \ ${_fe} \ - filemon \ + ${_filemon} \ firewire \ firmware \ ${_fxp} \ @@ -364,6 +364,10 @@ SUBDIR= \ ${_zfs} \ zlib \ +.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" +_filemon= filemon +.endif + .if ${MACHINE_CPUARCH} != "powerpc" && ${MACHINE_CPUARCH} != "arm" && \ ${MACHINE_CPUARCH} != "mips" _syscons= syscons
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210081408.q98E8DFU013661>