From ff8211ede4faae7c59027db03caae2faf9dc0957 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Sun, 8 Mar 2026 07:30:16 +0700 Subject: [PATCH] Fix makefile info commences out --- mk/config.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mk/config.mk b/mk/config.mk index 96dad5d8..0d848405 100644 --- a/mk/config.mk +++ b/mk/config.mk @@ -71,13 +71,13 @@ ifeq ($(PREFIX_BINARY),1) ifeq ($(HOST_TARGET),aarch64-unknown-linux-gnu) ifneq ($(ARCH),aarch64) ifneq ($(ARCH),x86_64) - $(info The $(ARCH) binary prefix is only built for x86_64 Linux hosts) + $(info The $(ARCH) binary prefix is only built for x86_64 Linux hosts) PREFIX_BINARY=0 endif endif else ifeq ($(HOST_TARGET),x86_64-unknown-linux-gnu) else - $(info The $(ARCH) binary prefix is only built for Linux hosts) + $(info The $(ARCH) binary prefix is only built for Linux hosts) PREFIX_BINARY=0 endif endif