From eec20e99254cca0aa3cff788c529d8c851b82b1e Mon Sep 17 00:00:00 2001 From: jsg Date: Wed, 28 Apr 2021 15:15:37 +0000 Subject: [PATCH] build eeprom on riscv64 --- usr.sbin/eeprom/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/usr.sbin/eeprom/Makefile b/usr.sbin/eeprom/Makefile index 49650564c04..3a54bb06d0a 100644 --- a/usr.sbin/eeprom/Makefile +++ b/usr.sbin/eeprom/Makefile @@ -1,8 +1,9 @@ -# $OpenBSD: Makefile,v 1.20 2020/06/29 15:34:07 kettenis Exp $ +# $OpenBSD: Makefile,v 1.21 2021/04/28 15:15:37 jsg Exp $ .if ${MACHINE} == "arm64" || ${MACHINE} == "armv7" || \ ${MACHINE} == "macppc" || ${MACHINE} == "octeon" || \ - ${MACHINE} == "powerpc64" || ${MACHINE} == "sparc64" + ${MACHINE} == "powerpc64" || ${MACHINE} == "riscv64" || \ + ${MACHINE} == "sparc64" PROG= eeprom SRCS= main.c @@ -13,6 +14,6 @@ NOPROG=yes .endif MAN= eeprom.8 -MANSUBDIR=arm64 armv7 macppc octeon powerpc64 sparc64 +MANSUBDIR=arm64 armv7 macppc octeon powerpc64 riscv64 sparc64 .include -- 2.20.1