Skip to content

Commit afbdd86

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

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +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)
6+
- Bug #409, #410: Fix fake goals in Makefile (@vjik)
77
- Bug #403: Add DI container delegates configuration (@vjik)
88
- Enh #399: Improve message for missing or invalid APP_ENV (@samdark)
99
- 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 $(sort $(subst :, ,$(CLI_ARGS))):;@:)
4+
$(eval $(sort $(subst :,\:,$(CLI_ARGS))):;@:)
55

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

0 commit comments

Comments
 (0)