package/yaffs2utils: create $(HOST_DIR)/bin before installation
The yaffs2utils Makefile uses plain "cp", which fails when $(HOST_DIR)/bin doesn't exist. Fix that by creationg $(HOST_DIR)/bin beforehand. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/199339624 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
762eec1ce9
commit
01a0bd3f73
@ -15,6 +15,7 @@ define HOST_YAFFS2UTILS_BUILD_CMDS
|
||||
endef
|
||||
|
||||
define HOST_YAFFS2UTILS_INSTALL_CMDS
|
||||
mkdir -p $(HOST_DIR)/bin
|
||||
$(HOST_MAKE_ENV) $(MAKE) -C $(@D) INSTALLDIR=$(HOST_DIR)/bin install
|
||||
endef
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user