Module Name: src
Committed By: scole
Date: Fri Aug 5 17:12:13 UTC 2016
Modified Files:
src/sys/modules: Makefile
Log Message:
PR port-ia64/51261
Use exec_elf64 modules for ia64
To generate a diff of this commit:
cvs rdiff -u -r1.168 -r1.169 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.168 src/sys/modules/Makefile:1.169
--- src/sys/modules/Makefile:1.168 Thu Aug 4 23:53:47 2016
+++ src/sys/modules/Makefile Fri Aug 5 17:12:13 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.168 2016/08/04 23:53:47 pgoyette Exp $
+# $NetBSD: Makefile,v 1.169 2016/08/05 17:12:13 scole Exp $
.include <bsd.own.mk>
@@ -133,12 +133,15 @@ SUBDIR+= xldscripts
SUBDIR+= exec_aout
.endif
-.if ${MACHINE_ARCH} != "alpha" && ${MACHINE_CPU} != "aarch64"
+.if ${MACHINE_ARCH} != "alpha" && \
+ ${MACHINE_CPU} != "aarch64" && \
+ ${MACHINE_ARCH} != "ia64"
SUBDIR+= exec_elf32
.endif
.if ${MACHINE_CPU} == "aarch64" || \
${MACHINE_ARCH} == "alpha" || \
+ ${MACHINE_ARCH} == "ia64" || \
${MACHINE_ARCH} == "sparc64" || \
${MACHINE_ARCH} == "x86_64"
SUBDIR+= exec_elf64