diff options
| author | Yann E. MORIN <yann.morin.1998@free.fr> | 2015-07-16 23:16:46 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-16 23:38:52 +0200 |
| commit | 6bae1ac5757f7dac2c906447502542bbb0cbdd62 (patch) | |
| tree | ec581ef08b122714ce4917e02d9e833e68b7d3db /support | |
| parent | 3788ad02cb7eb7e8384168a07e84223ae19e6f2d (diff) | |
core/out-of-tree: fix Makefile wrapper
Commit 971faf8 (Makefile: fix out-of-tree builds with multiple targets
with 'all') renamed the default target to '_all' to avoid name-clashing.
In doing so, I forgot to also fix the instance in the .PHONY rule.
Fix that now.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support')
| -rwxr-xr-x | support/scripts/mkmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/scripts/mkmakefile b/support/scripts/mkmakefile index 974e2c0eb..833be6a92 100755 --- a/support/scripts/mkmakefile +++ b/support/scripts/mkmakefile @@ -30,7 +30,7 @@ MAKEARGS += O=\$(if \$(patsubst /%,,\$(makedir)),\$(CURDIR)/)\$(patsubst %/,%,\$ MAKEFLAGS += --no-print-directory -.PHONY: all \$(MAKECMDGOALS) +.PHONY: _all \$(MAKECMDGOALS) all := \$(filter-out Makefile,\$(MAKECMDGOALS)) |
