From a4526633dd0d21853040581c819f0780f5defa9a Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Sat, 11 May 2024 20:12:42 +0200 Subject: [PATCH] =?UTF-8?q?make:=20reduce=20the=20number=20of=20`$(shell?= =?UTF-8?q?=20=E2=80=A6)`=20calls?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Through use of `$(INSTALL_DIR)`. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 467d26caf..0fef37b57 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ endif ANDROID_VERSION?=$(shell git rev-list --count HEAD) ANDROID_NAME?=$(VERSION) -MACHINE=$(shell $(CC) -dumpmachine 2>/dev/null) +MACHINE=$(TARGET_MACHINE) ifdef KODEBUG MACHINE:=$(MACHINE)-debug KODEDUG_SUFFIX:=-debug