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>
22 lines
610 B
Makefile
22 lines
610 B
Makefile
################################################################################
|
|
#
|
|
# yaffs2utils
|
|
#
|
|
################################################################################
|
|
|
|
YAFFS2UTILS_VERSION = 0.2.9
|
|
YAFFS2UTILS_SOURCE = $(YAFFS2UTILS_VERSION).tar.gz
|
|
YAFFS2UTILS_SITE = https://yaffs2utils.googlecode.com/files
|
|
YAFFS2UTILS_LICENSE = GPL-2.0
|
|
YAFFS2UTILS_LICENSE_FILES = COPYING
|
|
|
|
define HOST_YAFFS2UTILS_BUILD_CMDS
|
|
$(HOST_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define HOST_YAFFS2UTILS_INSTALL_CMDS
|
|
$(HOST_MAKE_ENV) $(MAKE) -C $(@D) INSTALLDIR=$(HOST_DIR)/bin install
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|