Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] classes/qmake2: export QMAKEPATH
@ 2013-06-06  6:54 Jonathan Liu
  2013-06-06  7:34 ` Jonathan Liu
  0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Liu @ 2013-06-06  6:54 UTC (permalink / raw)
  To: openembedded-core

QMAKEPATH is exported so that qmake is able to detect the webkit module,
load it and add it to the QT_CONFIG variable. The detection is done in
mkspecs/features/qt_config.prf which reads the qmake QMAKE_MKSPECS
builtin. qmake will read QMAKEPATH, append /mkspecs to it and prepend it
to the QMAKE_MKSPECS list builtin returned. qt_config.prf will then load
modules matching modules/qt_*.pri inside each directory in QMAKE_MKSPECS.

Signed-off-by: Jonathan Liu <net147@gmail.com>
---
 meta/classes/qmake2.bbclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/classes/qmake2.bbclass b/meta/classes/qmake2.bbclass
index 8b9861c..03ad2f1 100644
--- a/meta/classes/qmake2.bbclass
+++ b/meta/classes/qmake2.bbclass
@@ -5,6 +5,7 @@ inherit qmake_base
 
 DEPENDS_prepend = "qt4-tools-native "
 
+export QMAKEPATH = "${STAGING_DATADIR}/qt4"
 export QMAKESPEC = "${STAGING_DATADIR}/qt4/mkspecs/${TARGET_OS}-oe-g++"
 export OE_QMAKE_QT_CONFIG = "${STAGING_DATADIR}/qt4/mkspecs/qconfig.pri"
 export OE_QMAKE_UIC = "${STAGING_BINDIR_NATIVE}/uic4"
-- 
1.8.2.3



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

* Re: [PATCH] classes/qmake2: export QMAKEPATH
  2013-06-06  6:54 [PATCH] classes/qmake2: export QMAKEPATH Jonathan Liu
@ 2013-06-06  7:34 ` Jonathan Liu
  2013-06-07  2:05   ` Jonathan Liu
  0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Liu @ 2013-06-06  7:34 UTC (permalink / raw)
  To: openembedded-core@lists.openembedded.org

On 6 June 2013 16:54, Jonathan Liu <net147@gmail.com> wrote:
> QMAKEPATH is exported so that qmake is able to detect the webkit module,
> load it and add it to the QT_CONFIG variable. The detection is done in
> mkspecs/features/qt_config.prf which reads the qmake QMAKE_MKSPECS
> builtin. qmake will read QMAKEPATH, append /mkspecs to it and prepend it
> to the QMAKE_MKSPECS list builtin returned. qt_config.prf will then load
> modules matching modules/qt_*.pri inside each directory in QMAKE_MKSPECS.
>
> Signed-off-by: Jonathan Liu <net147@gmail.com>
> ---
>  meta/classes/qmake2.bbclass | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/meta/classes/qmake2.bbclass b/meta/classes/qmake2.bbclass
> index 8b9861c..03ad2f1 100644
> --- a/meta/classes/qmake2.bbclass
> +++ b/meta/classes/qmake2.bbclass
> @@ -5,6 +5,7 @@ inherit qmake_base
>
>  DEPENDS_prepend = "qt4-tools-native "
>
> +export QMAKEPATH = "${STAGING_DATADIR}/qt4"
>  export QMAKESPEC = "${STAGING_DATADIR}/qt4/mkspecs/${TARGET_OS}-oe-g++"
>  export OE_QMAKE_QT_CONFIG = "${STAGING_DATADIR}/qt4/mkspecs/qconfig.pri"
>  export OE_QMAKE_UIC = "${STAGING_BINDIR_NATIVE}/uic4"
> --
> 1.8.2.3
>
This may be causing some packaging QA problems. I am investigating...

Regards,
Jonathan


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

* Re: [PATCH] classes/qmake2: export QMAKEPATH
  2013-06-06  7:34 ` Jonathan Liu
@ 2013-06-07  2:05   ` Jonathan Liu
  0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Liu @ 2013-06-07  2:05 UTC (permalink / raw)
  To: openembedded-core@lists.openembedded.org

On 6 June 2013 17:34, Jonathan Liu <net147@gmail.com> wrote:
> On 6 June 2013 16:54, Jonathan Liu <net147@gmail.com> wrote:
>> QMAKEPATH is exported so that qmake is able to detect the webkit module,
>> load it and add it to the QT_CONFIG variable. The detection is done in
>> mkspecs/features/qt_config.prf which reads the qmake QMAKE_MKSPECS
>> builtin. qmake will read QMAKEPATH, append /mkspecs to it and prepend it
>> to the QMAKE_MKSPECS list builtin returned. qt_config.prf will then load
>> modules matching modules/qt_*.pri inside each directory in QMAKE_MKSPECS.
>>
>> Signed-off-by: Jonathan Liu <net147@gmail.com>
>> ---
>>  meta/classes/qmake2.bbclass | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/meta/classes/qmake2.bbclass b/meta/classes/qmake2.bbclass
>> index 8b9861c..03ad2f1 100644
>> --- a/meta/classes/qmake2.bbclass
>> +++ b/meta/classes/qmake2.bbclass
>> @@ -5,6 +5,7 @@ inherit qmake_base
>>
>>  DEPENDS_prepend = "qt4-tools-native "
>>
>> +export QMAKEPATH = "${STAGING_DATADIR}/qt4"
>>  export QMAKESPEC = "${STAGING_DATADIR}/qt4/mkspecs/${TARGET_OS}-oe-g++"
>>  export OE_QMAKE_QT_CONFIG = "${STAGING_DATADIR}/qt4/mkspecs/qconfig.pri"
>>  export OE_QMAKE_UIC = "${STAGING_BINDIR_NATIVE}/uic4"
>> --
>> 1.8.2.3
>>
> This may be causing some packaging QA problems. I am investigating...

Please disregard this patch. I will submit a different patch to fix.

Regards,
Jonathan


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

end of thread, other threads:[~2013-06-07  2:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-06  6:54 [PATCH] classes/qmake2: export QMAKEPATH Jonathan Liu
2013-06-06  7:34 ` Jonathan Liu
2013-06-07  2:05   ` Jonathan Liu

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