xenomai.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [PATCH] copperplate: sysregd: fix Makefile.am
       [not found] <fe268669-3bf8-627a-05c3-6231e44cead5.ref@yahoo.com>
@ 2023-02-22 12:51 ` Mauro S.
  2023-02-22 13:29   ` Jan Kiszka
  0 siblings, 1 reply; 3+ messages in thread
From: Mauro S. @ 2023-02-22 12:51 UTC (permalink / raw)
  To: xenomai


To avoid following Yocto error:

   do_package_qa: QA Issue: File /usr/sbin/sysregd in package xenomai
   doesn't have GNU_HASH (didn't pass LDFLAGS?) [ldflags]

Signed-off-by: Mauro Salvini <mau.salvi@yahoo.com>
---
  lib/copperplate/regd/Makefile.am | 6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/copperplate/regd/Makefile.am 
b/lib/copperplate/regd/Makefile.am
index 3b14e9863..590a47c2f 100644
--- a/lib/copperplate/regd/Makefile.am
+++ b/lib/copperplate/regd/Makefile.am
@@ -1,14 +1,14 @@
  sbin_PROGRAMS = sysregd
  -CPPFLAGS = 			\
+sysregd_CPPFLAGS = 			\
  	@XENO_USER_CFLAGS@	\
  	@XENO_FUSE_CFLAGS@	\
  	-I$(top_srcdir)/lib	\
  	-I$(top_srcdir)/include
  -LDFLAGS = $(XENO_POSIX_WRAPPERS)
+sysregd_LDFLAGS = $(XENO_POSIX_WRAPPERS)
  -LDADD = 			\
+sysregd_LDADD = 			\
  	../libcopperplate@CORE@.la	\
  	@XENO_CORE_LDADD@	\
  	@XENO_USER_LDADD@	\
-- 
2.17.1


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

* Re: [PATCH] copperplate: sysregd: fix Makefile.am
  2023-02-22 12:51 ` [PATCH] copperplate: sysregd: fix Makefile.am Mauro S.
@ 2023-02-22 13:29   ` Jan Kiszka
  2023-02-22 13:42     ` Mauro S.
  0 siblings, 1 reply; 3+ messages in thread
From: Jan Kiszka @ 2023-02-22 13:29 UTC (permalink / raw)
  To: Mauro S., xenomai

On 22.02.23 13:51, Mauro S. wrote:
> 
> To avoid following Yocto error:
> 
>   do_package_qa: QA Issue: File /usr/sbin/sysregd in package xenomai
>   doesn't have GNU_HASH (didn't pass LDFLAGS?) [ldflags]
> 
> Signed-off-by: Mauro Salvini <mau.salvi@yahoo.com>
> ---
>  lib/copperplate/regd/Makefile.am | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/lib/copperplate/regd/Makefile.am
> b/lib/copperplate/regd/Makefile.am
> index 3b14e9863..590a47c2f 100644
> --- a/lib/copperplate/regd/Makefile.am
> +++ b/lib/copperplate/regd/Makefile.am
> @@ -1,14 +1,14 @@
>  sbin_PROGRAMS = sysregd
>  -CPPFLAGS =             \
> +sysregd_CPPFLAGS =             \
>      @XENO_USER_CFLAGS@    \
>      @XENO_FUSE_CFLAGS@    \
>      -I$(top_srcdir)/lib    \
>      -I$(top_srcdir)/include
>  -LDFLAGS = $(XENO_POSIX_WRAPPERS)
> +sysregd_LDFLAGS = $(XENO_POSIX_WRAPPERS)
>  -LDADD =             \
> +sysregd_LDADD =             \
>      ../libcopperplate@CORE@.la    \
>      @XENO_CORE_LDADD@    \
>      @XENO_USER_LDADD@    \

This was heavily mangled. Please check your mail client settings or use
git send-email.

Besides that, some explanation why making the same settings
program-only, rather than global, would be good to see in the commit
message.

Jan

-- 
Siemens AG, Technology
Competence Center Embedded Linux


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

* Re: [PATCH] copperplate: sysregd: fix Makefile.am
  2023-02-22 13:29   ` Jan Kiszka
@ 2023-02-22 13:42     ` Mauro S.
  0 siblings, 0 replies; 3+ messages in thread
From: Mauro S. @ 2023-02-22 13:42 UTC (permalink / raw)
  To: Jan Kiszka, xenomai

Il 22/02/23 14:29, Jan Kiszka ha scritto:
> On 22.02.23 13:51, Mauro S. wrote:
>>
>> To avoid following Yocto error:
>>
>>    do_package_qa: QA Issue: File /usr/sbin/sysregd in package xenomai
>>    doesn't have GNU_HASH (didn't pass LDFLAGS?) [ldflags]
>>
>> Signed-off-by: Mauro Salvini <mau.salvi@yahoo.com>
>> ---
>>   lib/copperplate/regd/Makefile.am | 6 +++---
>>   1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/lib/copperplate/regd/Makefile.am
>> b/lib/copperplate/regd/Makefile.am
>> index 3b14e9863..590a47c2f 100644
>> --- a/lib/copperplate/regd/Makefile.am
>> +++ b/lib/copperplate/regd/Makefile.am
>> @@ -1,14 +1,14 @@
>>   sbin_PROGRAMS = sysregd
>>   -CPPFLAGS =             \
>> +sysregd_CPPFLAGS =             \
>>       @XENO_USER_CFLAGS@    \
>>       @XENO_FUSE_CFLAGS@    \
>>       -I$(top_srcdir)/lib    \
>>       -I$(top_srcdir)/include
>>   -LDFLAGS = $(XENO_POSIX_WRAPPERS)
>> +sysregd_LDFLAGS = $(XENO_POSIX_WRAPPERS)
>>   -LDADD =             \
>> +sysregd_LDADD =             \
>>       ../libcopperplate@CORE@.la    \
>>       @XENO_CORE_LDADD@    \
>>       @XENO_USER_LDADD@    \
> 
> This was heavily mangled. Please check your mail client settings or use
> git send-email.
> 
> Besides that, some explanation why making the same settings
> program-only, rather than global, would be good to see in the commit
> message.
> 

Ok sorry, I will resend it with git send-email (I need some time to 
manage it to work with yahoo/oauth2...)

> Jan
> 
-- 
Mauro S.


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

end of thread, other threads:[~2023-02-22 13:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <fe268669-3bf8-627a-05c3-6231e44cead5.ref@yahoo.com>
2023-02-22 12:51 ` [PATCH] copperplate: sysregd: fix Makefile.am Mauro S.
2023-02-22 13:29   ` Jan Kiszka
2023-02-22 13:42     ` Mauro S.

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).