Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] fix typo for libilclient.so on target
@ 2016-02-08 15:21 Schenk, Michael
  2016-02-08 15:29 ` Thomas Petazzoni
  0 siblings, 1 reply; 4+ messages in thread
From: Schenk, Michael @ 2016-02-08 15:21 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Schenk, Michael <michael.schenk@albistechnologies.com>
---
 package/rpi-userland/rpi-userland.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/rpi-userland/rpi-userland.mk b/package/rpi-userland/rpi-userland.mk
index 0a25b2d..fbf6fb4 100644
--- a/package/rpi-userland/rpi-userland.mk
+++ b/package/rpi-userland/rpi-userland.mk
@@ -35,14 +35,14 @@ RPI_USERLAND_CONF_OPTS += -DALL_APPS=ON
 define RPI_USERLAND_EXTRA_LIBS_TARGET
 	$(INSTALL) -m 0644 -D \
 		$(@D)/build/lib/libilclient.so \
-		$(TARGET_DIR)/usr/lib/libilcient.so
+		$(TARGET_DIR)/usr/lib/libilclient.so
 endef
 RPI_USERLAND_POST_INSTALL_TARGET_HOOKS += RPI_USERLAND_EXTRA_LIBS_TARGET
 
 define RPI_USERLAND_EXTRA_LIBS_STAGING
 	$(INSTALL) -m 0644 -D \
 		$(@D)/build/lib/libilclient.so \
-		$(STAGING_DIR)/usr/lib/libilcient.so
+		$(STAGING_DIR)/usr/lib/libilclient.so
 endef
 RPI_USERLAND_POST_INSTALL_STAGING_HOOKS += RPI_USERLAND_EXTRA_LIBS_STAGING
 
-- 
1.9.1

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

* [Buildroot] [PATCH 1/1] fix typo for libilclient.so on target
  2016-02-08 15:21 [Buildroot] [PATCH 1/1] fix typo for libilclient.so on target Schenk, Michael
@ 2016-02-08 15:29 ` Thomas Petazzoni
  2016-02-08 17:32   ` Yann E. MORIN
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2016-02-08 15:29 UTC (permalink / raw)
  To: buildroot

Dear Schenk, Michael,

On Mon, 8 Feb 2016 16:21:24 +0100, Schenk, Michael wrote:
> Signed-off-by: Schenk, Michael <michael.schenk@albistechnologies.com>
> ---
>  package/rpi-userland/rpi-userland.mk | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Thanks, I've applied after tweaking two things:

 - The commit title, which should always follow the format:

   <package>: <description>

   And also your commit title was talking about "target", but you're
   also fixing the "staging" installation. So all in all, I've changed
   the commit title to:

   rpi-userland: fix typos in the libilclient.so library installation

   For future patches, if you could use this convention for commit
   titles, it would be great.

 - The author/SoB lines, where for consistency reasons we prefer to
   have the first name before the last name. Yes, I know that depending
   on your geographical area, the common way of doing this is
   different, but Buildroot Git history uses "FirstName LastName
   <email>" everywhere, so I've changed this. If you can change your
   Git configuration to use this for future patches, it would be great.

Thanks a lot for your contribution!

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

* [Buildroot] [PATCH 1/1] fix typo for libilclient.so on target
  2016-02-08 15:29 ` Thomas Petazzoni
@ 2016-02-08 17:32   ` Yann E. MORIN
  2016-02-08 20:18     ` Thomas Petazzoni
  0 siblings, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2016-02-08 17:32 UTC (permalink / raw)
  To: buildroot

Thomas, Michael, All,

On 2016-02-08 16:29 +0100, Thomas Petazzoni spake thusly:
> On Mon, 8 Feb 2016 16:21:24 +0100, Schenk, Michael wrote:
> > Signed-off-by: Schenk, Michael <michael.schenk@albistechnologies.com>
> > ---
> >  package/rpi-userland/rpi-userland.mk | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> Thanks, I've applied after tweaking two things:
[--SNIP--]
>  - The author/SoB lines, where for consistency reasons we prefer to
>    have the first name before the last name. Yes, I know that depending
>    on your geographical area, the common way of doing this is
>    different, but Buildroot Git history uses "FirstName LastName
>    <email>" everywhere, so I've changed this. If you can change your
>    Git configuration to use this for future patches, it would be great.

I beg to disagree here. I amongst all would prefer we do not force
people to identify one way or another. We should *really* let people
identify the way *they* want to.

Thank you.

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 1/1] fix typo for libilclient.so on target
  2016-02-08 17:32   ` Yann E. MORIN
@ 2016-02-08 20:18     ` Thomas Petazzoni
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-02-08 20:18 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon, 8 Feb 2016 18:32:41 +0100, Yann E. MORIN wrote:

> > Thanks, I've applied after tweaking two things:
> [--SNIP--]
> >  - The author/SoB lines, where for consistency reasons we prefer to
> >    have the first name before the last name. Yes, I know that depending
> >    on your geographical area, the common way of doing this is
> >    different, but Buildroot Git history uses "FirstName LastName
> >    <email>" everywhere, so I've changed this. If you can change your
> >    Git configuration to use this for future patches, it would be great.
> 
> I beg to disagree here. I amongst all would prefer we do not force
> people to identify one way or another. We should *really* let people
> identify the way *they* want to.

I disagree here. For one, we already force people to use their real
name instead of any pseudonym or fake name. Since we're already asking
them to use their real name for legal reasons (without the real name,
the DCO is moot), then it is not adding much more constraint to require
the naming to follow a certain convention that makes it easier to
identify the contributors.

So, no, we are not going to let people identify the way they want to,
simply because the DCO does not allow that. If you want to do that,
then you should stop asking people to sign-off their patches.

Best regards,

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:[~2016-02-08 20:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-08 15:21 [Buildroot] [PATCH 1/1] fix typo for libilclient.so on target Schenk, Michael
2016-02-08 15:29 ` Thomas Petazzoni
2016-02-08 17:32   ` Yann E. MORIN
2016-02-08 20:18     ` Thomas Petazzoni

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