tool/port: re-enable check_tool in install.mk

The check was accidentally in

  66d44289e1 tool/ports: streamline hash tool usage

because $(call VAR, ...) just expands to nothing without errors if VAR
is undefined.
This commit is contained in:
Christian Helmuth 2019-08-27 15:58:16 +02:00
parent 65f402807f
commit 01bd87e90b
1 changed files with 5 additions and 5 deletions

View File

@ -42,16 +42,16 @@ _assert = $(if $(strip $1),$1,$(info Error: $(strip $2))$(error ))
#
_prefer = $(if $1,$1,$2)
#
# Include definitions provided by the port description file
#
include $(PORT)
#
# Include common definitions
#
include $(GENODE_DIR)/tool/ports/mk/common.inc
#
# Include definitions provided by the port description file
#
include $(PORT)
$(call check_tool,wget)
$(call check_tool,patch)
$(call check_tool,sha256sum)