Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] qt4e: override variables OE_QMAKE_QT_CONFIG
       [not found] <CAC6FaqyMxgZP4ODaZiACA8qPBCNRZUAg=UV_WufTqe1hZkdUdw@mail.gmail.com>
@ 2013-06-29 12:12 ` Wills Wang
  2013-06-29 12:15   ` Martin Jansa
  2013-06-29 12:19   ` [PATCHv2] " Martin Jansa
  0 siblings, 2 replies; 4+ messages in thread
From: Wills Wang @ 2013-06-29 12:12 UTC (permalink / raw)
  To: openembedded-core

override variables OE_QMAKE_QT_CONFIG to compile Qt/Embedded apps

diff --git a/meta/classes/qt4e.bbclass b/meta/classes/qt4e.bbclass
index de2a68d..13b1050 100755
--- a/meta/classes/qt4e.bbclass
+++ b/meta/classes/qt4e.bbclass
@@ -9,6 +9,7 @@ QT_LIBINFIX = "E"
 # override variables set by qmake-base to compile Qt/Embedded apps
 #
 export QMAKESPEC =
"${STAGING_DATADIR}/${QT_DIR_NAME}/mkspecs/${TARGET_OS}-oe-g++"
+export OE_QMAKE_QT_CONFIG =
"${STAGING_DATADIR}/${QT_DIR_NAME}/mkspecs/qconfig.pri"
 export OE_QMAKE_INCDIR_QT = "${STAGING_INCDIR}/${QT_DIR_NAME}"
 export OE_QMAKE_LIBDIR_QT = "${STAGING_LIBDIR}"
 export OE_QMAKE_LIBS_QT = "qt"


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

* Re: [PATCH] qt4e: override variables OE_QMAKE_QT_CONFIG
  2013-06-29 12:12 ` [PATCH] qt4e: override variables OE_QMAKE_QT_CONFIG Wills Wang
@ 2013-06-29 12:15   ` Martin Jansa
  2013-06-29 12:19   ` [PATCHv2] " Martin Jansa
  1 sibling, 0 replies; 4+ messages in thread
From: Martin Jansa @ 2013-06-29 12:15 UTC (permalink / raw)
  To: Wills Wang; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 1104 bytes --]

On Sat, Jun 29, 2013 at 08:12:51PM +0800, Wills Wang wrote:
> override variables OE_QMAKE_QT_CONFIG to compile Qt/Embedded apps

Thanks for forwarding it, btw it has extra line breaks, are you using
git send-email?

> diff --git a/meta/classes/qt4e.bbclass b/meta/classes/qt4e.bbclass
> index de2a68d..13b1050 100755
> --- a/meta/classes/qt4e.bbclass
> +++ b/meta/classes/qt4e.bbclass
> @@ -9,6 +9,7 @@ QT_LIBINFIX = "E"
>  # override variables set by qmake-base to compile Qt/Embedded apps
>  #
>  export QMAKESPEC =
> "${STAGING_DATADIR}/${QT_DIR_NAME}/mkspecs/${TARGET_OS}-oe-g++"
> +export OE_QMAKE_QT_CONFIG =
> "${STAGING_DATADIR}/${QT_DIR_NAME}/mkspecs/qconfig.pri"
>  export OE_QMAKE_INCDIR_QT = "${STAGING_INCDIR}/${QT_DIR_NAME}"
>  export OE_QMAKE_LIBDIR_QT = "${STAGING_LIBDIR}"
>  export OE_QMAKE_LIBS_QT = "qt"
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* [PATCHv2] qt4e: override variables OE_QMAKE_QT_CONFIG
  2013-06-29 12:12 ` [PATCH] qt4e: override variables OE_QMAKE_QT_CONFIG Wills Wang
  2013-06-29 12:15   ` Martin Jansa
@ 2013-06-29 12:19   ` Martin Jansa
  2013-07-03  9:43     ` Jonathan Liu
  1 sibling, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2013-06-29 12:19 UTC (permalink / raw)
  To: openembedded-core

From: Wills Wang <wills.wang.open@gmail.com>

override variables OE_QMAKE_QT_CONFIG to compile Qt/Embedded apps

Signed-off-by: Wills Wang <wills.wang.open@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/classes/qt4e.bbclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/classes/qt4e.bbclass b/meta/classes/qt4e.bbclass
index d7f5df8..850bb6a 100644
--- a/meta/classes/qt4e.bbclass
+++ b/meta/classes/qt4e.bbclass
@@ -9,6 +9,7 @@ QT_LIBINFIX = "E"
 # override variables set by qmake-base to compile Qt/Embedded apps
 #
 export QMAKESPEC = "${STAGING_DATADIR}/${QT_DIR_NAME}/mkspecs/${TARGET_OS}-oe-g++"
+export OE_QMAKE_QT_CONFIG = "${STAGING_DATADIR}/${QT_DIR_NAME}/mkspecs/qconfig.pri"
 export OE_QMAKE_INCDIR_QT = "${STAGING_INCDIR}/${QT_DIR_NAME}"
 export OE_QMAKE_LIBDIR_QT = "${STAGING_LIBDIR}"
 export OE_QMAKE_LIBS_QT = "qt"
-- 
1.8.2.1



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

* Re: [PATCHv2] qt4e: override variables OE_QMAKE_QT_CONFIG
  2013-06-29 12:19   ` [PATCHv2] " Martin Jansa
@ 2013-07-03  9:43     ` Jonathan Liu
  0 siblings, 0 replies; 4+ messages in thread
From: Jonathan Liu @ 2013-07-03  9:43 UTC (permalink / raw)
  To: Martin Jansa, Wills Wang; +Cc: openembedded-core

On 29/06/2013 10:19 PM, Martin Jansa wrote:
> From: Wills Wang <wills.wang.open@gmail.com>
>
> override variables OE_QMAKE_QT_CONFIG to compile Qt/Embedded apps
>
> Signed-off-by: Wills Wang <wills.wang.open@gmail.com>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>   meta/classes/qt4e.bbclass | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/meta/classes/qt4e.bbclass b/meta/classes/qt4e.bbclass
> index d7f5df8..850bb6a 100644
> --- a/meta/classes/qt4e.bbclass
> +++ b/meta/classes/qt4e.bbclass
> @@ -9,6 +9,7 @@ QT_LIBINFIX = "E"
>   # override variables set by qmake-base to compile Qt/Embedded apps
>   #
>   export QMAKESPEC = "${STAGING_DATADIR}/${QT_DIR_NAME}/mkspecs/${TARGET_OS}-oe-g++"
> +export OE_QMAKE_QT_CONFIG = "${STAGING_DATADIR}/${QT_DIR_NAME}/mkspecs/qconfig.pri"
>   export OE_QMAKE_INCDIR_QT = "${STAGING_INCDIR}/${QT_DIR_NAME}"
>   export OE_QMAKE_LIBDIR_QT = "${STAGING_LIBDIR}"
>   export OE_QMAKE_LIBS_QT = "qt"
An earlier patch for this was already submitted and merged:
http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=85f0cf943d3165a603ccb058d838bc0b6a80ce43

Regards,
Jonathan


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

end of thread, other threads:[~2013-07-03  9:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <CAC6FaqyMxgZP4ODaZiACA8qPBCNRZUAg=UV_WufTqe1hZkdUdw@mail.gmail.com>
2013-06-29 12:12 ` [PATCH] qt4e: override variables OE_QMAKE_QT_CONFIG Wills Wang
2013-06-29 12:15   ` Martin Jansa
2013-06-29 12:19   ` [PATCHv2] " Martin Jansa
2013-07-03  9:43     ` Jonathan Liu

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