summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2015-08-18 11:14:20 -0700
committerKonstantin Käfer <mail@kkaefer.com>2015-08-19 11:33:23 -0400
commit6807d757771f79971fff75fdf5983cd82238a602 (patch)
tree0bee2c0e9499a0b4a9d5af8378f87d1712cbbd8c /Makefile
parent4f6ec93c193e3f91effbac1415487e9bfb3dec9e (diff)
downloadqtlocation-mapboxgl-6807d757771f79971fff75fdf5983cd82238a602.tar.gz
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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"