mirror of https://github.com/containers/podman.git
Print nice error message when python is not installed
If user runs `make help` on a system without python, we should print a decent message. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
parent
dc5cc43563
commit
63ba4ff871
5
Makefile
5
Makefile
|
@ -135,8 +135,13 @@ export PRINT_HELP_PYSCRIPT
|
||||||
err_if_empty = $(if $(strip $($(1))),$(strip $($(1))),$(error Required variable $(1) value is undefined, whitespace, or empty))
|
err_if_empty = $(if $(strip $($(1))),$(strip $($(1))),$(error Required variable $(1) value is undefined, whitespace, or empty))
|
||||||
|
|
||||||
.PHONY: help
|
.PHONY: help
|
||||||
|
ifneq (, ${PYTHON})
|
||||||
help:
|
help:
|
||||||
@$(PYTHON) -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)
|
@$(PYTHON) -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)
|
||||||
|
else
|
||||||
|
help:
|
||||||
|
$(error python required for 'make help', executable not found)
|
||||||
|
endif
|
||||||
|
|
||||||
.gopathok:
|
.gopathok:
|
||||||
ifeq ("$(wildcard $(GOPKGDIR))","")
|
ifeq ("$(wildcard $(GOPKGDIR))","")
|
||||||
|
|
Loading…
Reference in New Issue