mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
printvars: remove "Nothing to be done for 'printvars'."
When calling 'make printvars' without -s, it ends with "Nothing to be done for 'printvars'." That's because the rule only contains $(info ...) calls and no actual shell commands to execute. To avoid this, make sure there is a shell command by adding :. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
e016b79c4e
commit
cd036c978a
2
Makefile
2
Makefile
@ -955,7 +955,7 @@ $(BUILD_DIR)/.br2-external.in: $(BUILD_DIR)
|
|||||||
# displayed.
|
# displayed.
|
||||||
.PHONY: printvars
|
.PHONY: printvars
|
||||||
printvars:
|
printvars:
|
||||||
@$(foreach V, \
|
@:$(foreach V, \
|
||||||
$(sort $(if $(VARS),$(filter $(VARS),$(.VARIABLES)),$(.VARIABLES))), \
|
$(sort $(if $(VARS),$(filter $(VARS),$(.VARIABLES)),$(.VARIABLES))), \
|
||||||
$(if $(filter-out environment% default automatic, \
|
$(if $(filter-out environment% default automatic, \
|
||||||
$(origin $V)), \
|
$(origin $V)), \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user