summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosiah Frentsos <jfrent@tilde.team>2023-09-15 13:18:26 -0400
committerQuentin Carbonneaux <quentin@c9x.me>2023-09-25 09:49:35 +0200
commitd023bdaa6b493686f7e9be7ac200ee4ac37d351f (patch)
treea24ff0d45f30b683199c6dc5e2dd9650277ab9b0
parentc5aca682a20d8cf55c345b7e07be51230693fd84 (diff)
downloadroux-d023bdaa6b493686f7e9be7ac200ee4ac37d351f.tar.gz
Fix architecture detection on OpenBSD/arm64
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0dbe5f7..3266c76 100644
--- a/Makefile
+++ b/Makefile
@@ -41,7 +41,7 @@ config.h:
 		;;                                     \
 	*)                                             \
 		case `uname -m` in                     \
-		*aarch64*)                             \
+		*aarch64*|*arm64*)                     \
 			echo "#define Deftgt T_arm64"; \
 			;;                             \
 		*riscv64*)                             \