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

* [Buildroot] [PATCH 1/1] Makefile: create $(BUILD_DIR) before attempting to touch .root
  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
  1 sibling, 1 reply; 4+ messages in thread
From: Arnout Vandecappelle @ 2015-07-14  9:46 UTC (permalink / raw)
  To: buildroot

On 07/14/15 11:44, Thomas De Schampheleire wrote:
> From: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>

Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

 Regards,
 Arnout

> 
> 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)/
> 


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

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

* [Buildroot] [PATCH 1/1] Makefile: create $(BUILD_DIR) before attempting to touch .root
  2015-07-14  9:46 ` Arnout Vandecappelle
@ 2015-07-14  9:49   ` Thomas De Schampheleire
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas De Schampheleire @ 2015-07-14  9:49 UTC (permalink / raw)
  To: buildroot

On Tue, Jul 14, 2015 at 11:46 AM, Arnout Vandecappelle <arnout@mind.be> wrote:
> On 07/14/15 11:44, Thomas De Schampheleire wrote:
>> From: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
>
> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
>

Clearly, this will need to be ported to the skeleton-package patch...

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

* [Buildroot] [PATCH 1/1] Makefile: create $(BUILD_DIR) before attempting to touch .root
  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 15:40 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-07-14 15:40 UTC (permalink / raw)
  To: buildroot

Dear Thomas De Schampheleire,

On Tue, 14 Jul 2015 11:44:08 +0200, Thomas De Schampheleire wrote:
> 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(-)

Marked as superseded, because the skeleton package from Maxime makes
this no longer needed. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[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