Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/dash: Create $(TARGET_DIR)/bin before install
@ 2019-01-14  3:55 Vadim Kochan
  2019-01-14  7:34 ` Baruch Siach
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Vadim Kochan @ 2019-01-14  3:55 UTC (permalink / raw)
  To: buildroot

The build fails because $(TARGET_DIR)/bin folder may not exist if for
example to use the following defconfig:

	BR2_x86_64=y
	BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_16=y
	BR2_SYSTEM_BIN_SH_DASH=y
	BR2_TARGET_GENERIC_GETTY_PORT="tty1"
	BR2_LINUX_KERNEL=y
	BR2_LINUX_KERNEL_CUSTOM_VERSION=y
	BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.16.7"
	BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
	BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86_64/linux.config"
	BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
	BR2_PACKAGE_S6_LINUX_INIT=y
	BR2_TARGET_ROOTFS_EXT2=y

Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
---
 package/dash/dash.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/dash/dash.mk b/package/dash/dash.mk
index f699f40686..606b5db34a 100644
--- a/package/dash/dash.mk
+++ b/package/dash/dash.mk
@@ -28,6 +28,7 @@ DASH_CONF_OPTS += --without-libedit
 endif
 
 define DASH_INSTALL_TARGET_CMDS
+	mkdir -p $(TARGET_DIR)/bin
 	$(INSTALL) -m 0755 $(@D)/src/dash $(TARGET_DIR)/bin/dash
 endef
 
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-01-24 19:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-14  3:55 [Buildroot] [PATCH 1/1] package/dash: Create $(TARGET_DIR)/bin before install Vadim Kochan
2019-01-14  7:34 ` Baruch Siach
2019-01-14  8:16 ` Thomas Petazzoni
2019-01-16 12:13 ` Peter Korsgaard
2019-01-24 19:08 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox