diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2015-08-18 11:14:20 -0700 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2015-08-19 11:33:23 -0400 |
commit | 6807d757771f79971fff75fdf5983cd82238a602 (patch) | |
tree | 0bee2c0e9499a0b4a9d5af8378f87d1712cbbd8c /Makefile | |
parent | 4f6ec93c193e3f91effbac1415487e9bfb3dec9e (diff) | |
download | qtlocation-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |