All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] qmake: add linux-qnuspe to the list of supported targets
@ 2012-09-04 19:09 Matthew McClintock
  2012-09-06  9:20 ` Paul Eggleton
  0 siblings, 1 reply; 3+ messages in thread
From: Matthew McClintock @ 2012-09-04 19:09 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Matthew McClintock <msm@freescale.com>
---
 meta/classes/qmake_base.bbclass |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/qmake_base.bbclass b/meta/classes/qmake_base.bbclass
index d1008b6..f972b27 100644
--- a/meta/classes/qmake_base.bbclass
+++ b/meta/classes/qmake_base.bbclass
@@ -48,7 +48,7 @@ addtask generate_qt_config_file after do_patch before do_configure
 
 qmake_base_do_configure() {
 	case ${QMAKESPEC} in
-	*linux-oe-g++|*linux-uclibc-oe-g++|*linux-gnueabi-oe-g++|*linux-uclibceabi-oe-g++)
+	*linux-oe-g++|*linux-uclibc-oe-g++|*linux-gnueabi-oe-g++|*linux-uclibceabi-oe-g++|*linux-gnuspe-oe-g++)
 		;;
 	*-oe-g++)
 		die Unsupported target ${TARGET_OS} for oe-g++ qmake spec
-- 
1.7.9.7





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

* Re: [PATCH] qmake: add linux-qnuspe to the list of supported targets
  2012-09-04 19:09 [PATCH] qmake: add linux-qnuspe to the list of supported targets Matthew McClintock
@ 2012-09-06  9:20 ` Paul Eggleton
  2012-09-06 16:20   ` McClintock Matthew-B29882
  0 siblings, 1 reply; 3+ messages in thread
From: Paul Eggleton @ 2012-09-06  9:20 UTC (permalink / raw)
  To: Matthew McClintock; +Cc: openembedded-core

On Tuesday 04 September 2012 14:09:54 Matthew McClintock wrote:
> Signed-off-by: Matthew McClintock <msm@freescale.com>
> ---
>  meta/classes/qmake_base.bbclass |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta/classes/qmake_base.bbclass
> b/meta/classes/qmake_base.bbclass index d1008b6..f972b27 100644
> --- a/meta/classes/qmake_base.bbclass
> +++ b/meta/classes/qmake_base.bbclass
> @@ -48,7 +48,7 @@ addtask generate_qt_config_file after do_patch before
> do_configure
> 
>  qmake_base_do_configure() {
>  	case ${QMAKESPEC} in
> -	*linux-oe-g++|*linux-uclibc-oe-g++|*linux-gnueabi-oe-g++|*linux-uclibceabi
> -oe-g++)
> +	*linux-oe-g++|*linux-uclibc-oe-g++|*linux-gnueabi-oe-g++|*linux-uclibceab
> i-oe-g++|*linux-gnuspe-oe-g++) ;;
>  	*-oe-g++)
>  		die Unsupported target ${TARGET_OS} for oe-g++ qmake spec

Oops, I missed this and created my own equivalent fix based on the file from OE-
Classic. The good news is it has been merged now though, and should support 
uClibc builds as well.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre



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

* Re: [PATCH] qmake: add linux-qnuspe to the list of supported targets
  2012-09-06  9:20 ` Paul Eggleton
@ 2012-09-06 16:20   ` McClintock Matthew-B29882
  0 siblings, 0 replies; 3+ messages in thread
From: McClintock Matthew-B29882 @ 2012-09-06 16:20 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: openembedded-core

On Thu, Sep 6, 2012 at 4:20 AM, Paul Eggleton
<paul.eggleton@linux.intel.com> wrote:
> On Tuesday 04 September 2012 14:09:54 Matthew McClintock wrote:
>> Signed-off-by: Matthew McClintock <msm@freescale.com>
>> ---
>>  meta/classes/qmake_base.bbclass |    2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/meta/classes/qmake_base.bbclass
>> b/meta/classes/qmake_base.bbclass index d1008b6..f972b27 100644
>> --- a/meta/classes/qmake_base.bbclass
>> +++ b/meta/classes/qmake_base.bbclass
>> @@ -48,7 +48,7 @@ addtask generate_qt_config_file after do_patch before
>> do_configure
>>
>>  qmake_base_do_configure() {
>>       case ${QMAKESPEC} in
>> -     *linux-oe-g++|*linux-uclibc-oe-g++|*linux-gnueabi-oe-g++|*linux-uclibceabi
>> -oe-g++)
>> +     *linux-oe-g++|*linux-uclibc-oe-g++|*linux-gnueabi-oe-g++|*linux-uclibceab
>> i-oe-g++|*linux-gnuspe-oe-g++) ;;
>>       *-oe-g++)
>>               die Unsupported target ${TARGET_OS} for oe-g++ qmake spec
>
> Oops, I missed this and created my own equivalent fix based on the file from OE-
> Classic. The good news is it has been merged now though, and should support
> uClibc builds as well.

I saw that, your patch looked more complete so I did not say anything ;)

-M

>
> Cheers,
> Paul
>
> --
>
> Paul Eggleton
> Intel Open Source Technology Centre
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core



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

end of thread, other threads:[~2012-09-06 16:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-04 19:09 [PATCH] qmake: add linux-qnuspe to the list of supported targets Matthew McClintock
2012-09-06  9:20 ` Paul Eggleton
2012-09-06 16:20   ` McClintock Matthew-B29882

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.