From b6507ebd915a83e34558feb917c7324a18b84ce4 Mon Sep 17 00:00:00 2001 From: Lobo <146457637+praderies@users.noreply.github.com> Date: Wed, 22 Nov 2023 15:45:17 -0300 Subject: [PATCH] make: Use $(MAKE) variable in build target This is so that platforms with non-GNU Make (*BSD, etc.) won't fail during bootstrapping/building. --- borg.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borg.mk b/borg.mk index c9e3829..31fe2db 100644 --- a/borg.mk +++ b/borg.mk @@ -165,6 +165,6 @@ bootstrap: @printf "\n=== Running '$(BORG_DIR)borg.sh checkout' ===\n" @$(BORG_DIR)borg.sh checkout --reset-hard @printf "\n=== Running 'make build' ===\n\n" - @make build + @$(MAKE) build @printf "\n=== Bootstrapping finished ===\n\n" @git submodule status