From 6807d757771f79971fff75fdf5983cd82238a602 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Tue, 18 Aug 2015 11:14:20 -0700 Subject: explicitly tell make that the subcommand is also make it seems that some make versions can't correctly detect that the subcommand is also a make and pass on the required options if the invocation is expanded from a variable. prepending `+` makes this explicit --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dc15a3d5d4..358b3c05c5 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ $(error Cannot determine build platform) endif export BUILD_VERSION = $(shell uname -m) -RUN = @$(MAKE) -f scripts/main.mk +RUN = +@$(MAKE) -f scripts/main.mk default: ; @printf "You must specify a valid target\n" -- cgit v1.2.1