Skip to content

Commit 5924e05

Browse files
authored
Fix fake goals in Makefile (#409)
1 parent ce7d41f commit 5924e05

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## 1.0.1 under development
44

55
- Bug #402: Always use only one goal in Makefile (@vjik)
6+
- Bug #409: Fix fake goals in Makefile (@vjik)
67
- Bug #403: Add DI container delegates configuration (@vjik)
78
- Enh #399: Improve message for missing or invalid APP_ENV (@samdark)
89
- Enh #404: Remove `<meta http-equiv="X-UA-Compatible" content="IE=edge">` from layout (@proweb)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.DEFAULT_GOAL := help
22

33
CLI_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
4-
$(eval $(CLI_ARGS):;@:)
4+
$(eval $(sort $(subst :, ,$(CLI_ARGS))):;@:)
55

66
PRIMARY_GOAL := $(firstword $(MAKECMDGOALS))
77

0 commit comments

Comments
 (0)