On 03/13/2013 09:49 AM, [email protected] wrote:
From: "Felipe F. Tonello" <[email protected]>

This is useful for users that want to .bbappend this recipe to select specific
modules to be compiled.

Signed-off-by: Felipe F. Tonello <[email protected]>
---
  meta/recipes-qt/qt4/qt-mobility_1.2.0.inc |    6 ++++--
  1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-qt/qt4/qt-mobility_1.2.0.inc 
b/meta/recipes-qt/qt4/qt-mobility_1.2.0.inc
index fca4cb0..849235c 100644
--- a/meta/recipes-qt/qt4/qt-mobility_1.2.0.inc
+++ b/meta/recipes-qt/qt4/qt-mobility_1.2.0.inc
@@ -18,7 +18,7 @@ SRC_URI = 
"http://get.qt.nokia.com/qt/add-ons/qt-mobility-opensource-src-${PV}.t
  SRC_URI[md5sum]="ea5db5a8d3dd4709c2926dceda646bd8"
  
SRC_URI[sha256sum]="ee3c88975e04139ac9589f76d4be646d44fcbc4c8c1cf2db621abc154cf0ba44"

-PR = "r7"
+PR = "r8"

  S = "${WORKDIR}/qt-mobility-opensource-src-${PV}"

@@ -31,6 +31,8 @@ qtm_plugins   := "/usr/lib/${qtm_dir}/plugins/QtMobility"
  qtm_data      := "/usr/share/${qtm_dir}"
  qtm_imports   := "/usr/lib/${qtm_dir}/imports"

+qtm_modules_list ?= "bearer contacts gallery location publishsubscribe 
messaging multimedia \
+systeminfo serviceframework sensors versit organizer feedback connectivity"
  qtm_bluezflag ?= "${@base_contains('DISTRO_FEATURES', 'bluetooth', 'yes', 'no', 
d)}"

  do_configure_prepend() {
@@ -44,7 +46,7 @@ do_configure_prepend() {
        cp staticconfig.pri staticconfig.pri.old
        echo "include(${STAGING_DATADIR}/${qtm_dir}/mkspecs/qconfig.pri)" 
>staticconfig.pri
        cat staticconfig.pri.old >>staticconfig.pri
-       ./configure -qmake-exec qmake2 -prefix /usr -examples -demos
+       ./configure -qmake-exec qmake2 -prefix /usr -examples -demos -modules 
${qtm_modules_list}
This change seems to generate an error from the configure scripts

| Unknown option: contacts
| Usage: configure [-prefix <dir>] [headerdir <dir>] [libdir <dir>]
|                  [-bindir <dir>] [-tests] [-examples] [-no-docs]
|                  [-no-tools] [-debug] [-release] [-silent]
|                  [-modules <list>]


I think you need to add quotes to the around the list based on this from the help:

| -modules <list> ... Restrict list of modules to build (default all supported)
|                     Choose from: bearer contacts gallery location 
publishsubscribe
|                     messaging multimedia systeminfo serviceframework
|                     sensors versit organizer feedback connectivity
|                     Modules should be separated by a space and surrounded
|                     by double quotation. If a selected module depends on 
other modules
|                     those modules (and their dependencies) will automatically 
be enabled.


Thanks
        Sau!

        echo QT_MOBILITY_BIN = ${qtm_bin} >>./config.pri
        echo QT_MOBILITY_LIB = ${qtm_lib} >>./config.pri
        echo QT_MOBILITY_INCLUDE = ${qtm_include} >>./config.pri


_______________________________________________
Openembedded-core mailing list
[email protected]
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core

Reply via email to