echo-cmd = $(if 1,\ $(info $(escchar)) && echo ' $(call escchar,$(echo-why)' ;) is there any mistake?
时间: 2024-02-18 16:00:36 浏览: 49
echo命令小解
Yes, there is a mistake in this variable definition. There is a missing closing parenthesis in the `$(call escchar)` function call. It should be:
```
echo-cmd = $(if 1,\ $(info $(escchar)) && echo ' $(call escchar,$(echo-why))' ;)
```
Note the added closing parenthesis after `$(echo-why)` to match the opening parenthesis earlier in the line.
阅读全文