Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] Makefile: create $(BUILD_DIR) before attempting to touch .root
@ 2015-07-14  9:44 Thomas De Schampheleire
  2015-07-14  9:46 ` Arnout Vandecappelle
  2015-07-14 15:40 ` Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Thomas De Schampheleire @ 2015-07-14  9:44 UTC (permalink / raw)
  To: buildroot

From: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>

The target $(BUILD_DIR)/.root does not have a direct dependency on
$(BUILD_DIR), meaning that cases could exist where the target is executed
without $(BUILD_DIR) being present.
Instead of hoping on a specific order, and instead of adding new make
dependencies, just make sure the directory is created.

Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 8eb8c6d..ee65417 100644
--- a/Makefile
+++ b/Makefile
@@ -471,7 +471,7 @@ RSYNC_VCS_EXCLUSIONS = \
 	--exclude CVS
 
 $(BUILD_DIR)/.root:
-	mkdir -p $(TARGET_DIR)
+	mkdir -p $(TARGET_DIR) $(BUILD_DIR)
 	rsync -a --ignore-times $(RSYNC_VCS_EXCLUSIONS) \
 		--chmod=u=rwX,go=rX --exclude .empty --exclude '*~' \
 		$(TARGET_SKELETON)/ $(TARGET_DIR)/
-- 
1.9.5

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

end of thread, other threads:[~2015-07-14 15:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-14  9:44 [Buildroot] [PATCH 1/1] Makefile: create $(BUILD_DIR) before attempting to touch .root Thomas De Schampheleire
2015-07-14  9:46 ` Arnout Vandecappelle
2015-07-14  9:49   ` Thomas De Schampheleire
2015-07-14 15:40 ` Thomas Petazzoni

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