All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] Makefile: add chmod before rm when cleaning.
@ 2019-04-17  0:09 Louis des Landes
  2019-04-17  0:09 ` [Buildroot] [PATCH 2/2] package/pkg-generic: add chmod " Louis des Landes
  2019-04-17 20:42 ` [Buildroot] [PATCH 1/2] Makefile: add chmod before rm " Arnout Vandecappelle
  0 siblings, 2 replies; 5+ messages in thread
From: Louis des Landes @ 2019-04-17  0:09 UTC (permalink / raw)
  To: buildroot

Some build systems (looking at you golang) create read only directories
as caches.
As such rm -rf will actually fail, causing clean and <pkg>-dirclean to fail.

This patch will cause `make clean` to run chmod -R +w on the relevant
directory first, which will allow rm -rf to work.

This may be resolved if https://github.com/golang/go/issues/31481 is
resolved satisfactorily.

Signed-off-by: Louis des Landes <louis.deslandes@fleet.space>
---
 Makefile | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/Makefile b/Makefile
index 522c0b0606..fc2a82e074 100644
--- a/Makefile
+++ b/Makefile
@@ -1060,6 +1060,12 @@ printvars:
 
 .PHONY: clean
 clean:
+	# Some build systems (looking at you golang) create read only directories
+	# As such rm -rf will actually fail, so brute force them all to writeable
+	# before removing them.
+	chmod -R u+w $(BASE_TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) $(HOST_DIR_SYMLINK) \
+		$(BUILD_DIR) $(BASE_DIR)/staging \
+		$(LEGAL_INFO_DIR) $(GRAPHS_DIR)
 	rm -rf $(BASE_TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) $(HOST_DIR_SYMLINK) \
 		$(BUILD_DIR) $(BASE_DIR)/staging \
 		$(LEGAL_INFO_DIR) $(GRAPHS_DIR)
-- 
2.21.0

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

* [Buildroot] [PATCH 2/2] package/pkg-generic: add chmod when cleaning.
  2019-04-17  0:09 [Buildroot] [PATCH 1/2] Makefile: add chmod before rm when cleaning Louis des Landes
@ 2019-04-17  0:09 ` Louis des Landes
  2019-04-17 20:42 ` [Buildroot] [PATCH 1/2] Makefile: add chmod before rm " Arnout Vandecappelle
  1 sibling, 0 replies; 5+ messages in thread
From: Louis des Landes @ 2019-04-17  0:09 UTC (permalink / raw)
  To: buildroot

Some build systems (looking at you golang) create read only directories
as caches.
As such rm -rf will actually fail, causing clean and <pkg>-dirclean to fail.

This patch will cause `make <pkg>-dirclean` to force chmod -R +w on the relevant
directory first, which will allow rm -rf to work.

This may be resolved if https://github.com/golang/go/issues/31481 is
resolved satisfactorily.

Signed-off-by: Louis des Landes <louis.deslandes@fleet.space>
---
 package/pkg-generic.mk | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/pkg-generic.mk b/package/pkg-generic.mk
index 67782138b4..fd72fc8cf5 100644
--- a/package/pkg-generic.mk
+++ b/package/pkg-generic.mk
@@ -346,6 +346,10 @@ $(BUILD_DIR)/%/.stamp_target_installed:
 
 # Remove package sources
 $(BUILD_DIR)/%/.stamp_dircleaned:
+	# Some build systems (looking at you golang) create read only directories
+	# As such rm -rf will actually fail, so brute force them all to writeable
+	# before removing them.
+	chmod -R u+w $(@D)
 	rm -Rf $(@D)
 
 ################################################################################
-- 
2.21.0

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

* [Buildroot] [PATCH 1/2] Makefile: add chmod before rm when cleaning.
  2019-04-17  0:09 [Buildroot] [PATCH 1/2] Makefile: add chmod before rm when cleaning Louis des Landes
  2019-04-17  0:09 ` [Buildroot] [PATCH 2/2] package/pkg-generic: add chmod " Louis des Landes
@ 2019-04-17 20:42 ` Arnout Vandecappelle
  2019-04-18  0:14   ` Louis des Landes
  1 sibling, 1 reply; 5+ messages in thread
From: Arnout Vandecappelle @ 2019-04-17 20:42 UTC (permalink / raw)
  To: buildroot



On 17/04/2019 02:09, Louis des Landes wrote:
> Some build systems (looking at you golang) create read only directories
> as caches.
> As such rm -rf will actually fail, causing clean and <pkg>-dirclean to fail.
> 
> This patch will cause `make clean` to run chmod -R +w on the relevant
> directory first, which will allow rm -rf to work.
> 
> This may be resolved if https://github.com/golang/go/issues/31481 is
> resolved satisfactorily.

 I don't like this very much - adding a go-specific workaround to the generic
infrastructure.

 Would it be acceptable to instead do the chmod as a POST_BUILD_HOOK that is
added by golang-package?

 I also don't understand that I haven't encountered this issue myself... Maybe I
don't build Go packages...

 Regards,
 Arnout

> 
> Signed-off-by: Louis des Landes <louis.deslandes@fleet.space>
> ---
>  Makefile | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/Makefile b/Makefile
> index 522c0b0606..fc2a82e074 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -1060,6 +1060,12 @@ printvars:
>  
>  .PHONY: clean
>  clean:
> +	# Some build systems (looking at you golang) create read only directories
> +	# As such rm -rf will actually fail, so brute force them all to writeable
> +	# before removing them.
> +	chmod -R u+w $(BASE_TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) $(HOST_DIR_SYMLINK) \
> +		$(BUILD_DIR) $(BASE_DIR)/staging \
> +		$(LEGAL_INFO_DIR) $(GRAPHS_DIR)
>  	rm -rf $(BASE_TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) $(HOST_DIR_SYMLINK) \
>  		$(BUILD_DIR) $(BASE_DIR)/staging \
>  		$(LEGAL_INFO_DIR) $(GRAPHS_DIR)
> 

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

* [Buildroot] [PATCH 1/2] Makefile: add chmod before rm when cleaning.
  2019-04-17 20:42 ` [Buildroot] [PATCH 1/2] Makefile: add chmod before rm " Arnout Vandecappelle
@ 2019-04-18  0:14   ` Louis des Landes
  2019-04-21  7:11     ` Arnout Vandecappelle
  0 siblings, 1 reply; 5+ messages in thread
From: Louis des Landes @ 2019-04-18  0:14 UTC (permalink / raw)
  To: buildroot

On Thu, 18 Apr 2019 at 06:12, Arnout Vandecappelle <arnout@mind.be> wrote:
>
>
>
> On 17/04/2019 02:09, Louis des Landes wrote:
> > Some build systems (looking at you golang) create read only directories
> > as caches.
> > As such rm -rf will actually fail, causing clean and <pkg>-dirclean to fail.
> >
> > This patch will cause `make clean` to run chmod -R +w on the relevant
> > directory first, which will allow rm -rf to work.
> >
> > This may be resolved if https://github.com/golang/go/issues/31481 is
> > resolved satisfactorily.
>
>  I don't like this very much - adding a go-specific workaround to the generic
> infrastructure.
>
>  Would it be acceptable to instead do the chmod as a POST_BUILD_HOOK that is
> added by golang-package?
I kind of agree, and this is somewhat of a hack. POST_BUILD_HOOK
doesn't get triggered if the build fails (AFAIK) so
a failed build would still leave this directory lying around without
being chmod'd. Might still be a good addition though.

>
>  I also don't understand that I haven't encountered this issue myself... Maybe I
> don't build Go packages...
This 'feature' was introduced with 'module' support (
https://github.com/golang/go/wiki/Modules )
Previously there was no official dependency management, so unless
you're building recent go packages you won't encounter this issue.
In most other ways this module support is great. In this particular
respect it's annoying for build systems.

>  Regards,
>  Arnout
>
> >
> > Signed-off-by: Louis des Landes <louis.deslandes@fleet.space>
> > ---
> >  Makefile | 6 ++++++
> >  1 file changed, 6 insertions(+)
> >
> > diff --git a/Makefile b/Makefile
> > index 522c0b0606..fc2a82e074 100644
> > --- a/Makefile
> > +++ b/Makefile
> > @@ -1060,6 +1060,12 @@ printvars:
> >
> >  .PHONY: clean
> >  clean:
> > +     # Some build systems (looking at you golang) create read only directories
> > +     # As such rm -rf will actually fail, so brute force them all to writeable
> > +     # before removing them.
> > +     chmod -R u+w $(BASE_TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) $(HOST_DIR_SYMLINK) \
> > +             $(BUILD_DIR) $(BASE_DIR)/staging \
> > +             $(LEGAL_INFO_DIR) $(GRAPHS_DIR)
> >       rm -rf $(BASE_TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) $(HOST_DIR_SYMLINK) \
> >               $(BUILD_DIR) $(BASE_DIR)/staging \
> >               $(LEGAL_INFO_DIR) $(GRAPHS_DIR)
> >

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

* [Buildroot] [PATCH 1/2] Makefile: add chmod before rm when cleaning.
  2019-04-18  0:14   ` Louis des Landes
@ 2019-04-21  7:11     ` Arnout Vandecappelle
  0 siblings, 0 replies; 5+ messages in thread
From: Arnout Vandecappelle @ 2019-04-21  7:11 UTC (permalink / raw)
  To: buildroot



On 18/04/2019 02:14, Louis des Landes wrote:
> On Thu, 18 Apr 2019 at 06:12, Arnout Vandecappelle <arnout@mind.be> wrote:
>>
>>
>>
>> On 17/04/2019 02:09, Louis des Landes wrote:
>>> Some build systems (looking at you golang) create read only directories
>>> as caches.
>>> As such rm -rf will actually fail, causing clean and <pkg>-dirclean to fail.
>>>
>>> This patch will cause `make clean` to run chmod -R +w on the relevant
>>> directory first, which will allow rm -rf to work.
>>>
>>> This may be resolved if https://github.com/golang/go/issues/31481 is
>>> resolved satisfactorily.
>>
>>  I don't like this very much - adding a go-specific workaround to the generic
>> infrastructure.
>>
>>  Would it be acceptable to instead do the chmod as a POST_BUILD_HOOK that is
>> added by golang-package?
> I kind of agree, and this is somewhat of a hack. POST_BUILD_HOOK
> doesn't get triggered if the build fails (AFAIK) so
> a failed build would still leave this directory lying around without
> being chmod'd. Might still be a good addition though.

 Yeah, better yet would be to patch go to remove that "feature". Long-term
that's anyway what we expect, right? That the go tool learns some option to not
do the chmod?

 Regards,
 Arnout

> 
>>
>>  I also don't understand that I haven't encountered this issue myself... Maybe I
>> don't build Go packages...
> This 'feature' was introduced with 'module' support (
> https://github.com/golang/go/wiki/Modules )
> Previously there was no official dependency management, so unless
> you're building recent go packages you won't encounter this issue.
> In most other ways this module support is great. In this particular
> respect it's annoying for build systems.
> 
>>  Regards,
>>  Arnout
>>
>>>
>>> Signed-off-by: Louis des Landes <louis.deslandes@fleet.space>
>>> ---
>>>  Makefile | 6 ++++++
>>>  1 file changed, 6 insertions(+)
>>>
>>> diff --git a/Makefile b/Makefile
>>> index 522c0b0606..fc2a82e074 100644
>>> --- a/Makefile
>>> +++ b/Makefile
>>> @@ -1060,6 +1060,12 @@ printvars:
>>>
>>>  .PHONY: clean
>>>  clean:
>>> +     # Some build systems (looking at you golang) create read only directories
>>> +     # As such rm -rf will actually fail, so brute force them all to writeable
>>> +     # before removing them.
>>> +     chmod -R u+w $(BASE_TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) $(HOST_DIR_SYMLINK) \
>>> +             $(BUILD_DIR) $(BASE_DIR)/staging \
>>> +             $(LEGAL_INFO_DIR) $(GRAPHS_DIR)
>>>       rm -rf $(BASE_TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) $(HOST_DIR_SYMLINK) \
>>>               $(BUILD_DIR) $(BASE_DIR)/staging \
>>>               $(LEGAL_INFO_DIR) $(GRAPHS_DIR)
>>>

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

end of thread, other threads:[~2019-04-21  7:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-17  0:09 [Buildroot] [PATCH 1/2] Makefile: add chmod before rm when cleaning Louis des Landes
2019-04-17  0:09 ` [Buildroot] [PATCH 2/2] package/pkg-generic: add chmod " Louis des Landes
2019-04-17 20:42 ` [Buildroot] [PATCH 1/2] Makefile: add chmod before rm " Arnout Vandecappelle
2019-04-18  0:14   ` Louis des Landes
2019-04-21  7:11     ` Arnout Vandecappelle

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.