Module Name: src
Committed By: pgoyette
Date: Thu Sep 13 22:09:20 UTC 2018
Modified Files:
src/sys/modules/compat_13 [pgoyette-compat]: Makefile
Log Message:
Include required MD code for amd64
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/sys/modules/compat_13/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/compat_13/Makefile
diff -u src/sys/modules/compat_13/Makefile:1.1.2.1 src/sys/modules/compat_13/Makefile:1.1.2.2
--- src/sys/modules/compat_13/Makefile:1.1.2.1 Fri Mar 30 11:18:34 2018
+++ src/sys/modules/compat_13/Makefile Thu Sep 13 22:09:20 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.2.1 2018/03/30 11:18:34 pgoyette Exp $
+# $NetBSD: Makefile,v 1.1.2.2 2018/09/13 22:09:20 pgoyette Exp $
.include "../Makefile.inc"
@@ -12,5 +12,10 @@ CPPFLAGS+= -DCOMPAT_40 -DCOMPAT_50 -DCOM
SRCS+= compat_13_mod.c
SRCS+= uvm_13.c kern_sig_13.c
+.if ${MACHINE_ARCH} == "x86_64"
+.PATH: ${S}/arch/amd64/amd64
+
+SRCS+= compat_13_machdep.c
+.endif
.include <bsd.kmodule.mk>