diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-04-14 11:42:38 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-14 11:42:38 +0000 |
commit | 9a7a995ebcbdaa1899d27b64a30462298106434a (patch) | |
tree | 01c0a6398eaa03e565653c939daae88c56e4220c /packages | |
parent | ae37f74013fca27d3f784b4b2555db57433e0c6f (diff) |
qt4: set platform to ${TARGET_OS}-g++ to prevent host based assumptions
Diffstat (limited to 'packages')
-rw-r--r-- | packages/qt/qt4-x11-free_4.1.1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/qt/qt4-x11-free_4.1.1.bb b/packages/qt/qt4-x11-free_4.1.1.bb index 6c32026f38..755510cc7d 100644 --- a/packages/qt/qt4-x11-free_4.1.1.bb +++ b/packages/qt/qt4-x11-free_4.1.1.bb @@ -6,7 +6,7 @@ LICENSE = "GPL QPL" MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" DEPENDS = "uicmoc4-native qmake2-native freetype jpeg libx11 xft libxext libxrender libxrandr libxcursor" PROVIDES = "qt4x11" -PR = "r2" +PR = "r4" SRC_URI = "ftp://ftp.trolltech.com/qt/source/qt-x11-opensource-src-${PV}.tar.gz \ file://cross-compile.patch;patch=1 \ @@ -51,7 +51,7 @@ do_configure() { ln -sf ${STAGING_BINDIR}/qmake2 bin/qmake #rm -rf ./mkspecs #ln -sf ${QMAKE_MKSPEC_PATH} ./mkspecs - echo yes | ./configure -prefix / -crossarch ${ARCH} ${QT_CONFIG_FLAGS} -fast \ + echo yes | ./configure -prefix / -platform ${TARGET_OS}-g++ -crossarch ${ARCH} ${QT_CONFIG_FLAGS} -fast \ -L${STAGING_LIBDIR} -I${STAGING_INCDIR} -I${STAGING_INCDIR}/freetype2 -I${STAGING_INCDIR}/mysql } |