From 836ea365421bd863a401e944538a6a0868eb226d Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E8=AB=8F=E8=A8=AA=E5=AD=90?= Date: Sun, 9 Jun 2024 19:35:24 +0900 Subject: [PATCH] =?utf8?q?bmake=E3=81=AE=E3=83=81=E3=82=A7=E3=83=83?= =?utf8?q?=E3=82=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 2adb971..4dcab74 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,10 @@ UNAME_S != uname -s UNAME_M != uname -m +.if ${UNAME_M} == "x86_64" +UNAME_M = amd64 +.endif + NAME != cat main.c | grep "const char \*sofname" | awk '{print $$5}' | \ sed "s/\"//g" | sed "s/;//" VERSION != cat main.c | grep "const char \*version" | awk '{print $$5}' | \ -- 2.43.0