diff options
-rw-r--r-- | distrib/special/installboot/Makefile | 6 |
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 |