From 06e70570e2088605d61f18b127356e5680f7f599 Mon Sep 17 00:00:00 2001 From: Daniel Levin Date: Mon, 13 Apr 2026 10:47:18 +0200 Subject: [PATCH] Update Makefile to support builds on Illumos Close #4772 --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index f073772a..0236c64b 100644 --- a/Makefile +++ b/Makefile @@ -53,6 +53,8 @@ ifeq ($(UNAME_M),x86_64) BINARY := $(BINARY64) else ifeq ($(UNAME_M),amd64) BINARY := $(BINARY64) +else ifeq ($(UNAME_M),i86pc) + BINARY := $(BINARY64) else ifeq ($(UNAME_M),s390x) BINARY := $(BINARYS390) else ifeq ($(UNAME_M),i686)