0f9c0bf3d5
Since things are no longer installed in $(HOST_DIR)/usr, the callers should also not refer to it. This is a mechanical change with git grep -l '$(HOST_DIR)/usr/bin' | xargs sed -i 's%$(HOST_DIR)/usr/bin%$(HOST_DIR)/bin%g' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
20 lines
472 B
Makefile
20 lines
472 B
Makefile
################################################################################
|
|
#
|
|
# waf
|
|
#
|
|
################################################################################
|
|
|
|
WAF_VERSION = 1.9.5
|
|
WAF_SOURCE = waf-$(WAF_VERSION)
|
|
WAF_SITE = https://waf.io/
|
|
|
|
define HOST_WAF_EXTRACT_CMDS
|
|
$(INSTALL) -D -m 0755 $(DL_DIR)/waf-$(WAF_VERSION) $(@D)/waf
|
|
endef
|
|
|
|
define HOST_WAF_INSTALL_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/waf $(HOST_DIR)/bin/waf
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|