All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] Makefile: add $BINARIES_DIR dependency to target-post-image target
@ 2019-07-12 16:10 Brent Generous
  2019-08-04 14:42 ` Yann E. MORIN
  0 siblings, 1 reply; 3+ messages in thread
From: Brent Generous @ 2019-07-12 16:10 UTC (permalink / raw)
  To: buildroot

Without this dependency, there is no guarantee that the $BINARIES_DIR
has been created before this point. This can cause commands that intend
to copy a file into $BINARIES_DIR to instead copy to a file named
$BINARIES_DIR, causing later commands to create this directory to fail.

A comment above the target for $BINARIES_DIR mentions "do NOT list these
as dependencies anywhere else". It wasn't clear from the git history why
that should be the case. This seems like the correct way to handle the
dependency on this directory.

Signed-off-by: Brent Generous <bgenerous@impinj.com>
---
 Makefile | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index c98a0ed87e..2ea7220484 100644
--- a/Makefile
+++ b/Makefile
@@ -606,7 +606,6 @@ BR2_SDK_PREFIX ?= $(GNU_TARGET_NAME)_sdk-buildroot
 sdk: prepare-sdk $(BR2_TAR_HOST_DEPENDENCY)
 	@$(call MESSAGE,"Generating SDK tarball")
 	$(if $(BR2_SDK_PREFIX),,$(error BR2_SDK_PREFIX can not be empty))
-	$(Q)mkdir -p $(BINARIES_DIR)
 	$(TAR) czf "$(BINARIES_DIR)/$(BR2_SDK_PREFIX).tar.gz" \
 		--owner=0 --group=0 --numeric-owner \
 		--transform='s#^$(patsubst /%,%,$(HOST_DIR))#$(BR2_SDK_PREFIX)#' \
@@ -810,7 +809,7 @@ endif # merged /usr
 	touch $(TARGET_DIR)/usr
 
 .PHONY: target-post-image
-target-post-image: $(TARGETS_ROOTFS) target-finalize staging-finalize
+target-post-image: $(TARGETS_ROOTFS) target-finalize staging-finalize | $(BINARIES_DIR)
 	@rm -f $(ROOTFS_COMMON_TAR)
 	@$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_IMAGE_SCRIPT)), \
 		$(call MESSAGE,"Executing post-image script $(s)"); \
-- 
2.17.2

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

end of thread, other threads:[~2019-08-05 18:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-12 16:10 [Buildroot] [PATCH 1/1] Makefile: add $BINARIES_DIR dependency to target-post-image target Brent Generous
2019-08-04 14:42 ` Yann E. MORIN
2019-08-05 18:07   ` Brent Generous

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.