diff options
| author | mrg <mrg@NetBSD.org> | 2010-03-22 02:00:33 +0000 |
|---|---|---|
| committer | mrg <mrg@NetBSD.org> | 2010-03-22 02:00:33 +0000 |
| commit | eaa088bcc1d010966ee30ea4d51378f1ba3fd361 (patch) | |
| tree | d618c72f49a7ea093846f1d7fb4e39394cbf5514 /sys/modules | |
| parent | 093c642facbc0e772c9811bb3d66a04880e684a5 (diff) | |
add powerpc64 support. from dennis.c.ferguson@gmail.com in PR#43029.
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/coredump/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/modules/coredump/Makefile b/sys/modules/coredump/Makefile index 0e5952ec57a..1b8cad18ecb 100644 --- a/sys/modules/coredump/Makefile +++ b/sys/modules/coredump/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2009/03/31 18:41:40 dyoung Exp $ +# $NetBSD: Makefile,v 1.3 2010/03/22 02:00:33 mrg Exp $ .include "../Makefile.inc" @@ -18,6 +18,9 @@ SRCS+= uvm_coredump.c .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" .PATH: ${S}/arch/x86/x86 .endif +.if ${MACHINE_ARCH} == "powerpc64" +.PATH: ${S}/arch/powerpc/powerpc +.endif SRCS+= core_machdep.c .include <bsd.kmodule.mk> |
