summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Wildt <patrick@cvs.openbsd.org>2017-01-23 00:59:27 +0000
committerPatrick Wildt <patrick@cvs.openbsd.org>2017-01-23 00:59:27 +0000
commitd380f870ce4fe3ab78be8a705102026f90dab4ce (patch)
tree6c5af096cff99991f1441ba98a35f2cfd1d43680
parent77703aec670581db8581af7957694ecbaf142e23 (diff)
Use stubs for arm64 as well.
ok phessler@
-rw-r--r--distrib/special/installboot/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/distrib/special/installboot/Makefile b/distrib/special/installboot/Makefile
index 760daf0e44e..85668920194 100644
--- a/distrib/special/installboot/Makefile
+++ b/distrib/special/installboot/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.9 2016/09/03 13:37:40 guenther Exp $
+# $OpenBSD: Makefile,v 1.10 2017/01/23 00:59:26 patrick Exp $
.PATH: ${.CURDIR}/../../../usr.sbin/installboot
@@ -20,6 +20,10 @@ SRCS += i386_nlist.c
SRCS += i386_softraid.c
.endif
+.if ${MACHINE} == "arm64"
+SRCS += stubs.c
+.endif
+
.if ${MACHINE} == "armv7"
SRCS += stubs.c
.endif