All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/qt5/Config.in: fix typo
@ 2020-04-20 15:10 Bartosz Bilas
  2020-04-20 15:29 ` Yann E. MORIN
  0 siblings, 1 reply; 4+ messages in thread
From: Bartosz Bilas @ 2020-04-20 15:10 UTC (permalink / raw)
  To: buildroot

There is no BR2_TOOLCHAIN_GCC_AT_LEAST_5_0 option
but BR2_TOOLCHAIN_GCC_AT_LEAST_5.

Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com>
---
 package/qt5/Config.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/qt5/Config.in b/package/qt5/Config.in
index cd9c93735d..c716919476 100644
--- a/package/qt5/Config.in
+++ b/package/qt5/Config.in
@@ -16,14 +16,14 @@ comment "Qt5 needs a toolchain w/ gcc >= 5.0, wchar, NPTL, C++, dynamic library"
 	depends on !BR2_arc
 	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
 		!BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS || \
-		!BR2_TOOLCHAIN_GCC_AT_LEAST_5_0
+		!BR2_TOOLCHAIN_GCC_AT_LEAST_5
 
 menuconfig BR2_PACKAGE_QT5
 	bool "Qt5"
 	depends on BR2_INSTALL_LIBSTDCPP
 	depends on BR2_USE_WCHAR
 	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
-	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5_0 # C++11, GCC_BUG_57694
+	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++11, GCC_BUG_57694
 	depends on !BR2_ARM_CPU_ARMV4 # needs ARMv5+
 	# no built-in double-conversion support
 	depends on !BR2_arc
-- 
2.26.1

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

* [Buildroot] [PATCH] package/qt5/Config.in: fix typo
  2020-04-20 15:10 [Buildroot] [PATCH] package/qt5/Config.in: fix typo Bartosz Bilas
@ 2020-04-20 15:29 ` Yann E. MORIN
  2020-04-20 15:36   ` Bartosz Bilas
  2020-04-20 18:37   ` Peter Seiderer
  0 siblings, 2 replies; 4+ messages in thread
From: Yann E. MORIN @ 2020-04-20 15:29 UTC (permalink / raw)
  To: buildroot

Bartosz, All,

On 2020-04-20 17:10 +0200, Bartosz Bilas spake thusly:
> There is no BR2_TOOLCHAIN_GCC_AT_LEAST_5_0 option
> but BR2_TOOLCHAIN_GCC_AT_LEAST_5.
> 
> Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com>

I also fixed pinentry and wireshark, which had the incorrect version
introduced with the same commit as qt5. Adapted the commit log and
pushed to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/qt5/Config.in | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/qt5/Config.in b/package/qt5/Config.in
> index cd9c93735d..c716919476 100644
> --- a/package/qt5/Config.in
> +++ b/package/qt5/Config.in
> @@ -16,14 +16,14 @@ comment "Qt5 needs a toolchain w/ gcc >= 5.0, wchar, NPTL, C++, dynamic library"
>  	depends on !BR2_arc
>  	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
>  		!BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS || \
> -		!BR2_TOOLCHAIN_GCC_AT_LEAST_5_0
> +		!BR2_TOOLCHAIN_GCC_AT_LEAST_5
>  
>  menuconfig BR2_PACKAGE_QT5
>  	bool "Qt5"
>  	depends on BR2_INSTALL_LIBSTDCPP
>  	depends on BR2_USE_WCHAR
>  	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
> -	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5_0 # C++11, GCC_BUG_57694
> +	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++11, GCC_BUG_57694
>  	depends on !BR2_ARM_CPU_ARMV4 # needs ARMv5+
>  	# no built-in double-conversion support
>  	depends on !BR2_arc
> -- 
> 2.26.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  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] package/qt5/Config.in: fix typo
  2020-04-20 15:29 ` Yann E. MORIN
@ 2020-04-20 15:36   ` Bartosz Bilas
  2020-04-20 18:37   ` Peter Seiderer
  1 sibling, 0 replies; 4+ messages in thread
From: Bartosz Bilas @ 2020-04-20 15:36 UTC (permalink / raw)
  To: buildroot

Hi Yann,

On 20.04.2020 17:29, Yann E. MORIN wrote:
> Bartosz, All,
>
> On 2020-04-20 17:10 +0200, Bartosz Bilas spake thusly:
>> There is no BR2_TOOLCHAIN_GCC_AT_LEAST_5_0 option
>> but BR2_TOOLCHAIN_GCC_AT_LEAST_5.
>>
>> Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com>
> I also fixed pinentry and wireshark, which had the incorrect version
> introduced with the same commit as qt5. Adapted the commit log and
> pushed to master, thanks.
maybe a good idea would be to introduce some verify-tests for those 
non-existing options (if it's possible ofc.) because as we see someone 
can make the same mistake again.
>
> Regards,
> Yann E. MORIN.
>
>> ---
>>   package/qt5/Config.in | 4 ++--
>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/package/qt5/Config.in b/package/qt5/Config.in
>> index cd9c93735d..c716919476 100644
>> --- a/package/qt5/Config.in
>> +++ b/package/qt5/Config.in
>> @@ -16,14 +16,14 @@ comment "Qt5 needs a toolchain w/ gcc >= 5.0, wchar, NPTL, C++, dynamic library"
>>   	depends on !BR2_arc
>>   	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
>>   		!BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS || \
>> -		!BR2_TOOLCHAIN_GCC_AT_LEAST_5_0
>> +		!BR2_TOOLCHAIN_GCC_AT_LEAST_5
>>   
>>   menuconfig BR2_PACKAGE_QT5
>>   	bool "Qt5"
>>   	depends on BR2_INSTALL_LIBSTDCPP
>>   	depends on BR2_USE_WCHAR
>>   	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
>> -	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5_0 # C++11, GCC_BUG_57694
>> +	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++11, GCC_BUG_57694
>>   	depends on !BR2_ARM_CPU_ARMV4 # needs ARMv5+
>>   	# no built-in double-conversion support
>>   	depends on !BR2_arc
>> -- 
>> 2.26.1
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net
>> http://lists.busybox.net/mailman/listinfo/buildroot
Best
Bartek

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

* [Buildroot] [PATCH] package/qt5/Config.in: fix typo
  2020-04-20 15:29 ` Yann E. MORIN
  2020-04-20 15:36   ` Bartosz Bilas
@ 2020-04-20 18:37   ` Peter Seiderer
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Seiderer @ 2020-04-20 18:37 UTC (permalink / raw)
  To: buildroot

Hello Yann, Bartosz,

On Mon, 20 Apr 2020 17:29:10 +0200, "Yann E. MORIN" <yann.morin.1998@free.fr> wrote:

> Bartosz, All,
>
> On 2020-04-20 17:10 +0200, Bartosz Bilas spake thusly:
> > There is no BR2_TOOLCHAIN_GCC_AT_LEAST_5_0 option
> > but BR2_TOOLCHAIN_GCC_AT_LEAST_5.

Argh....only checked for the disabling case and did not check the positive one....

> >
> > Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com>
>
> I also fixed pinentry and wireshark, which had the incorrect version
> introduced with the same commit as qt5. Adapted the commit log and
> pushed to master, thanks.

Thanks to both of you for fixing my mistake...

Regards,
Peter

>
> Regards,
> Yann E. MORIN.
>
> > ---
> >  package/qt5/Config.in | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/package/qt5/Config.in b/package/qt5/Config.in
> > index cd9c93735d..c716919476 100644
> > --- a/package/qt5/Config.in
> > +++ b/package/qt5/Config.in
> > @@ -16,14 +16,14 @@ comment "Qt5 needs a toolchain w/ gcc >= 5.0, wchar, NPTL, C++, dynamic library"
> >  	depends on !BR2_arc
> >  	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
> >  		!BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS || \
> > -		!BR2_TOOLCHAIN_GCC_AT_LEAST_5_0
> > +		!BR2_TOOLCHAIN_GCC_AT_LEAST_5
> >
> >  menuconfig BR2_PACKAGE_QT5
> >  	bool "Qt5"
> >  	depends on BR2_INSTALL_LIBSTDCPP
> >  	depends on BR2_USE_WCHAR
> >  	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
> > -	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5_0 # C++11, GCC_BUG_57694
> > +	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++11, GCC_BUG_57694
> >  	depends on !BR2_ARM_CPU_ARMV4 # needs ARMv5+
> >  	# no built-in double-conversion support
> >  	depends on !BR2_arc
> > --
> > 2.26.1
> >
> > _______________________________________________
> > buildroot mailing list
> > buildroot at busybox.net
> > http://lists.busybox.net/mailman/listinfo/buildroot
>

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

end of thread, other threads:[~2020-04-20 18:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-20 15:10 [Buildroot] [PATCH] package/qt5/Config.in: fix typo Bartosz Bilas
2020-04-20 15:29 ` Yann E. MORIN
2020-04-20 15:36   ` Bartosz Bilas
2020-04-20 18:37   ` Peter Seiderer

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.