All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/busybox: drop empty configure command
@ 2019-01-29 12:36 yann.morin at orange.com
  2019-01-29 15:33 ` Peter Korsgaard
  2019-01-29 15:37 ` Peter Korsgaard
  0 siblings, 2 replies; 5+ messages in thread
From: yann.morin at orange.com @ 2019-01-29 12:36 UTC (permalink / raw)
  To: buildroot

Since commit 50dc350c65 (package/busybox: update to 1.29.0), we no
longer define the BUSYBOX_NOCLOBBER_INSTALL macro, so it expands to an
empty string, so we end up with no action in BUSYBOX_CONFIGURE_CMDS.

Drop BUSYBOX_CONFIGURE_CMDS now that it serves no purpose.

Signed-off-by: Yann MORIN <yann.morin@orange.com>
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Adam Duskett <aduskett@gmail.com>
Cc: Carlos Santos <casantos@datacom.com.br>
---
 package/busybox/busybox.mk | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/package/busybox/busybox.mk b/package/busybox/busybox.mk
index bfcca6ed3e..5c5a8ea839 100644
--- a/package/busybox/busybox.mk
+++ b/package/busybox/busybox.mk
@@ -323,10 +323,6 @@ define BUSYBOX_KCONFIG_FIXUP_CMDS
 	$(BUSYBOX_SET_INDIVIDUAL_BINARIES)
 endef
 
-define BUSYBOX_CONFIGURE_CMDS
-	$(BUSYBOX_NOCLOBBER_INSTALL)
-endef
-
 define BUSYBOX_BUILD_CMDS
 	$(BUSYBOX_MAKE_ENV) $(MAKE) $(BUSYBOX_MAKE_OPTS) -C $(@D)
 endef
-- 
2.17.1


_________________________________________________________________________________________________________________________

Ce message et ses pieces jointes peuvent contenir des informations confidentielles ou privilegiees et ne doivent donc
pas etre diffuses, exploites ou copies sans autorisation. Si vous avez recu ce message par erreur, veuillez le signaler
a l'expediteur et le detruire ainsi que les pieces jointes. Les messages electroniques etant susceptibles d'alteration,
Orange decline toute responsabilite si ce message a ete altere, deforme ou falsifie. Merci.

This message and its attachments may contain confidential or privileged information that may be protected by law;
they should not be distributed, used or copied without authorisation.
If you have received this email in error, please notify the sender and delete this message and its attachments.
As emails may be altered, Orange is not liable for messages that have been modified, changed or falsified.
Thank you.

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

* [Buildroot] [PATCH] package/busybox: drop empty configure command
  2019-01-29 12:36 [Buildroot] [PATCH] package/busybox: drop empty configure command yann.morin at orange.com
@ 2019-01-29 15:33 ` Peter Korsgaard
  2019-01-29 15:37 ` Peter Korsgaard
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2019-01-29 15:33 UTC (permalink / raw)
  To: buildroot

>>>>>   <yann.morin@orange.com> writes:

 > Since commit 50dc350c65 (package/busybox: update to 1.29.0), we no
 > longer define the BUSYBOX_NOCLOBBER_INSTALL macro, so it expands to an
 > empty string, so we end up with no action in BUSYBOX_CONFIGURE_CMDS.

 > Drop BUSYBOX_CONFIGURE_CMDS now that it serves no purpose.

 > Signed-off-by: Yann MORIN <yann.morin@orange.com>
 > Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
 > Cc: Adam Duskett <aduskett@gmail.com>
 > Cc: Carlos Santos <casantos@datacom.com.br>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] package/busybox: drop empty configure command
  2019-01-29 12:36 [Buildroot] [PATCH] package/busybox: drop empty configure command yann.morin at orange.com
  2019-01-29 15:33 ` Peter Korsgaard
@ 2019-01-29 15:37 ` Peter Korsgaard
  2019-01-30  6:00   ` yann.morin at orange.com
  1 sibling, 1 reply; 5+ messages in thread
From: Peter Korsgaard @ 2019-01-29 15:37 UTC (permalink / raw)
  To: buildroot

>>>>>   <yann.morin@orange.com> writes:

 > Since commit 50dc350c65 (package/busybox: update to 1.29.0), we no
 > longer define the BUSYBOX_NOCLOBBER_INSTALL macro, so it expands to an
 > empty string, so we end up with no action in BUSYBOX_CONFIGURE_CMDS.

 > Drop BUSYBOX_CONFIGURE_CMDS now that it serves no purpose.

 > Signed-off-by: Yann MORIN <yann.morin@orange.com>

FYI, your author name was not configured correctly (was your email
address):

remote:
remote: Refusing to update refs/heads/master:
remote:     fc9fd5a8780966970525b4da8313091a0f0bbc80..8cbcb445b951b3b9e19d7cde7253ec6ce61f06f6
remote:
remote: Author name is not set properly (needs to be first and last name, and it is 'yann.morin at orange.com' instead)

I've fixed that and committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] package/busybox: drop empty configure command
  2019-01-29 15:37 ` Peter Korsgaard
@ 2019-01-30  6:00   ` yann.morin at orange.com
  2019-01-30  7:39     ` Peter Korsgaard
  0 siblings, 1 reply; 5+ messages in thread
From: yann.morin at orange.com @ 2019-01-30  6:00 UTC (permalink / raw)
  To: buildroot

Peter, All,

On 2019-01-29 16:37 +0100, Peter Korsgaard spake thusly:
> >>>>>   <yann.morin@orange.com> writes:
> 
>  > Since commit 50dc350c65 (package/busybox: update to 1.29.0), we no
>  > longer define the BUSYBOX_NOCLOBBER_INSTALL macro, so it expands to an
>  > empty string, so we end up with no action in BUSYBOX_CONFIGURE_CMDS.
> 
>  > Drop BUSYBOX_CONFIGURE_CMDS now that it serves no purpose.
> 
>  > Signed-off-by: Yann MORIN <yann.morin@orange.com>
> 
> FYI, your author name was not configured correctly (was your email
> address):

Yeah, I have no idea why that is, because here, my 'From' was really what
you'd expect:

    From: "Yann E. MORIN" <yann.morin@orange.com>

But it seems my intelligent mail server stripped it out... Let's see how
that one will fare...

> remote:
> remote: Refusing to update refs/heads/master:
> remote:     fc9fd5a8780966970525b4da8313091a0f0bbc80..8cbcb445b951b3b9e19d7cde7253ec6ce61f06f6
> remote:
> remote: Author name is not set properly (needs to be first and last name, and it is 'yann.morin at orange.com' instead)
> 
> I've fixed that and committed, thanks.

Thanks!

Regards,
Yann E. MORIN.

-- 
                                        ____________
.-----------------.--------------------:       _    :------------------.
|  Yann E. MORIN  | Real-Time Embedded |    __/ )   | /"\ ASCII RIBBON |
| +33 534.541.179 | Software  Designer |  _/ - /'   | \ / CAMPAIGN     |
| +33 638.411.245 '--------------------: (_    `--, |  X  AGAINST      |
|      yann.morin (at) orange.com      |_="    ,--' | / \ HTML MAIL    |
'--------------------------------------:______/_____:------------------'


_________________________________________________________________________________________________________________________

Ce message et ses pieces jointes peuvent contenir des informations confidentielles ou privilegiees et ne doivent donc
pas etre diffuses, exploites ou copies sans autorisation. Si vous avez recu ce message par erreur, veuillez le signaler
a l'expediteur et le detruire ainsi que les pieces jointes. Les messages electroniques etant susceptibles d'alteration,
Orange decline toute responsabilite si ce message a ete altere, deforme ou falsifie. Merci.

This message and its attachments may contain confidential or privileged information that may be protected by law;
they should not be distributed, used or copied without authorisation.
If you have received this email in error, please notify the sender and delete this message and its attachments.
As emails may be altered, Orange is not liable for messages that have been modified, changed or falsified.
Thank you.

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

* [Buildroot] [PATCH] package/busybox: drop empty configure command
  2019-01-30  6:00   ` yann.morin at orange.com
@ 2019-01-30  7:39     ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2019-01-30  7:39 UTC (permalink / raw)
  To: buildroot

>>>>>   <yann.morin@orange.com> writes:

 > Peter, All,
 > On 2019-01-29 16:37 +0100, Peter Korsgaard spake thusly:
 >> >>>>>   <yann.morin@orange.com> writes:
 >> 
 >> > Since commit 50dc350c65 (package/busybox: update to 1.29.0), we no
 >> > longer define the BUSYBOX_NOCLOBBER_INSTALL macro, so it expands to an
 >> > empty string, so we end up with no action in BUSYBOX_CONFIGURE_CMDS.
 >> 
 >> > Drop BUSYBOX_CONFIGURE_CMDS now that it serves no purpose.
 >> 
 >> > Signed-off-by: Yann MORIN <yann.morin@orange.com>
 >> 
 >> FYI, your author name was not configured correctly (was your email
 >> address):

 > Yeah, I have no idea why that is, because here, my 'From' was really what
 > you'd expect:

 >     From: "Yann E. MORIN" <yann.morin@orange.com>

 > But it seems my intelligent mail server stripped it out... Let's see how
 > that one will fare...

Still the same ;)

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2019-01-30  7:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-29 12:36 [Buildroot] [PATCH] package/busybox: drop empty configure command yann.morin at orange.com
2019-01-29 15:33 ` Peter Korsgaard
2019-01-29 15:37 ` Peter Korsgaard
2019-01-30  6:00   ` yann.morin at orange.com
2019-01-30  7:39     ` Peter Korsgaard

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.