Openembedded Core Discussions
 help / color / mirror / Atom feed
* [oe-core, for-denzil][PATCH 0/1] qt4-embedded: Reference QT_ARCH correctly in QT_CONFIG_FLAGS
@ 2012-06-17 11:31 Anders Darander
  2012-06-17 11:31 ` [oe-core, for-denzil][PATCH 1/1] qt4-embedded: fix QT_ARCH usage " Anders Darander
  2012-06-18 18:40 ` [oe-core, for-denzil][PATCH 0/1] qt4-embedded: Reference QT_ARCH correctly " Scott Garman
  0 siblings, 2 replies; 4+ messages in thread
From: Anders Darander @ 2012-06-17 11:31 UTC (permalink / raw)
  To: openembedded-core; +Cc: Anders Darander

This single patch serie should be applied to master and denzil.

The commit "qt4: move functions from python to shell style", commit id: 
98cb2efe4e9f3092d531c9fc809406c3ef559725 made it impossible to use 
oe_filter_out on QT_CONFIG_FLAGS. The error received was:

$ bitbake core-image-sato -eLoading cache: 100%                                         
|###################################################| ETA:  00:00:00                    
Loaded 1109 entries from dependency cache.                                              
ERROR: Failure expanding variable QT_CONFIG_FLAGS[:=], expression was                   
${@oe_filter_out('-plugin-gfx-transformed', '      -embedded ${QT_ARCH}                 
-qtlibinfix E     -plugin-gfx-transformed -plugin-gfx-qvfb                              
-plugin-gfx-vnc -plugin-gfx-directfb     -plugin-mouse-tslib                            
-qt-mouse-pc -qt-mouse-qvfb -qt-mouse-linuxinput     -qt-kbd-tty                        
-DQT_KEYPAD_NAVIGATION      -release -no-cups -reduce-relocations                       
-shared -no-nas-sound -no-nis                     -system-libjpeg                       
-system-libpng -system-libtiff -system-zlib                     -no-pch                 
-qdbus -stl -glib -phonon -webkit                     -xmlpatterns                      
-no-rpath -qt3support -silent                     --enable-pulseaudio                   
-no-sql-ibase -no-sql-mysql -no-sql-psql -no-sql-odbc -plugin-sql-sqlite                
-no-accessibility -no-sm                        -exceptions ', d)} which                
triggered exception SyntaxError: EOL while scanning string literal                      
(QT_CONFIG_FLAGS[:=], line 1)                                                           
ERROR: Command execution failed: Exited with 1                                          
                                                                                        
Summary: There were 2 ERROR messages shown, returning a non-zero exit                   
code.                                       


The following changes since commit 63d1ae1c2828cda03828b4c3fdde037d7a23f1e4:

  directfb: added missing Upstream-status (2012-06-15 15:41:11 +0100)

are available in the git repository at:

  git://github.com/darander/oe-core qt4-arch-fix
  https://github.com/darander/oe-core/tree/qt4-arch-fix

Anders Darander (1):
  qt4-embedded: fix QT_ARCH usage in QT_CONFIG_FLAGS

 meta/recipes-qt/qt4/qt4-embedded.inc |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
1.7.10




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

* [oe-core, for-denzil][PATCH 1/1] qt4-embedded: fix QT_ARCH usage in QT_CONFIG_FLAGS
  2012-06-17 11:31 [oe-core, for-denzil][PATCH 0/1] qt4-embedded: Reference QT_ARCH correctly in QT_CONFIG_FLAGS Anders Darander
@ 2012-06-17 11:31 ` Anders Darander
  2012-06-18 12:39   ` Richard Purdie
  2012-06-18 18:40 ` [oe-core, for-denzil][PATCH 0/1] qt4-embedded: Reference QT_ARCH correctly " Scott Garman
  1 sibling, 1 reply; 4+ messages in thread
From: Anders Darander @ 2012-06-17 11:31 UTC (permalink / raw)
  To: openembedded-core

After the change to shell style functions (from python style), the
ability to use oe_filter_out on QT_CONFIG_FLAGS got broken.

This patch solves that by referring to QT_ARCH in a more correct way.

Signed-off-by: Anders Darander <anders@chargestorm.se>
---
 meta/recipes-qt/qt4/qt4-embedded.inc |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-qt/qt4/qt4-embedded.inc b/meta/recipes-qt/qt4/qt4-embedded.inc
index 05803d1..9c5b4af 100644
--- a/meta/recipes-qt/qt4/qt4-embedded.inc
+++ b/meta/recipes-qt/qt4/qt4-embedded.inc
@@ -10,7 +10,7 @@ QT_BASE_LIB  ?= "libqt-embedded"
 SRC_URI += "file://qte.sh"
 
 QT_CONFIG_FLAGS += " \
-    -embedded ${QT_ARCH} \
+    -embedded $QT_ARCH \
     -qtlibinfix ${QT_LIBINFIX} \
     -plugin-gfx-transformed -plugin-gfx-qvfb -plugin-gfx-vnc -plugin-gfx-directfb \
     -plugin-mouse-tslib -qt-mouse-pc -qt-mouse-qvfb -qt-mouse-linuxinput \
-- 
1.7.10




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

* Re: [oe-core, for-denzil][PATCH 1/1] qt4-embedded: fix QT_ARCH usage in QT_CONFIG_FLAGS
  2012-06-17 11:31 ` [oe-core, for-denzil][PATCH 1/1] qt4-embedded: fix QT_ARCH usage " Anders Darander
@ 2012-06-18 12:39   ` Richard Purdie
  0 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2012-06-18 12:39 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Garman, Scott A

On Sun, 2012-06-17 at 13:31 +0200, Anders Darander wrote:
> After the change to shell style functions (from python style), the
> ability to use oe_filter_out on QT_CONFIG_FLAGS got broken.
> 
> This patch solves that by referring to QT_ARCH in a more correct way.
> 
> Signed-off-by: Anders Darander <anders@chargestorm.se>
> ---
>  meta/recipes-qt/qt4/qt4-embedded.inc |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta/recipes-qt/qt4/qt4-embedded.inc b/meta/recipes-qt/qt4/qt4-embedded.inc
> index 05803d1..9c5b4af 100644
> --- a/meta/recipes-qt/qt4/qt4-embedded.inc
> +++ b/meta/recipes-qt/qt4/qt4-embedded.inc
> @@ -10,7 +10,7 @@ QT_BASE_LIB  ?= "libqt-embedded"
>  SRC_URI += "file://qte.sh"
>  
>  QT_CONFIG_FLAGS += " \
> -    -embedded ${QT_ARCH} \
> +    -embedded $QT_ARCH \
>      -qtlibinfix ${QT_LIBINFIX} \
>      -plugin-gfx-transformed -plugin-gfx-qvfb -plugin-gfx-vnc -plugin-gfx-directfb \
>      -plugin-mouse-tslib -qt-mouse-pc -qt-mouse-qvfb -qt-mouse-linuxinput \

Merged to master, thanks. cc'ing Scott for denzil...

Cheers,

Richard




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

* Re: [oe-core, for-denzil][PATCH 0/1] qt4-embedded: Reference QT_ARCH correctly in QT_CONFIG_FLAGS
  2012-06-17 11:31 [oe-core, for-denzil][PATCH 0/1] qt4-embedded: Reference QT_ARCH correctly in QT_CONFIG_FLAGS Anders Darander
  2012-06-17 11:31 ` [oe-core, for-denzil][PATCH 1/1] qt4-embedded: fix QT_ARCH usage " Anders Darander
@ 2012-06-18 18:40 ` Scott Garman
  1 sibling, 0 replies; 4+ messages in thread
From: Scott Garman @ 2012-06-18 18:40 UTC (permalink / raw)
  To: openembedded-core

On 06/17/2012 04:31 AM, Anders Darander wrote:
> This single patch serie should be applied to master and denzil.

This is on my radar. I'm about to submit a denzil pull request now, but 
this won't be included in it until my next pull request.

Scott

-- 
Scott Garman
Embedded Linux Engineer - Yocto Project
Intel Open Source Technology Center



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

end of thread, other threads:[~2012-06-18 18:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-17 11:31 [oe-core, for-denzil][PATCH 0/1] qt4-embedded: Reference QT_ARCH correctly in QT_CONFIG_FLAGS Anders Darander
2012-06-17 11:31 ` [oe-core, for-denzil][PATCH 1/1] qt4-embedded: fix QT_ARCH usage " Anders Darander
2012-06-18 12:39   ` Richard Purdie
2012-06-18 18:40 ` [oe-core, for-denzil][PATCH 0/1] qt4-embedded: Reference QT_ARCH correctly " Scott Garman

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