diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2011-05-10 14:47:07 +0000 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-05-10 16:59:07 +0200 |
commit | aef16efcd8e3d4b74b4e0c640ae20911c092d753 (patch) | |
tree | 1fb05b99a37097d701b66d730cebdbe5c619aa94 /meta-oe/classes | |
parent | 814454252534e6240fb3d115cbc25fd813c5a728 (diff) | |
download | meta-openembedded-aef16efcd8e3d4b74b4e0c640ae20911c092d753.tar.gz |
qmake_base.bbclass: use using parallel staging dirs
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'meta-oe/classes')
-rw-r--r-- | meta-oe/classes/qmake_base.bbclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta-oe/classes/qmake_base.bbclass b/meta-oe/classes/qmake_base.bbclass index 654c7c80f..aa8c05b9d 100644 --- a/meta-oe/classes/qmake_base.bbclass +++ b/meta-oe/classes/qmake_base.bbclass | |||
@@ -38,11 +38,11 @@ do_generate_qt_config_file() { | |||
38 | export QT_CONF_PATH=${WORKDIR}/qt.conf | 38 | export QT_CONF_PATH=${WORKDIR}/qt.conf |
39 | cat > ${WORKDIR}/qt.conf <<EOF | 39 | cat > ${WORKDIR}/qt.conf <<EOF |
40 | [Paths] | 40 | [Paths] |
41 | Prefix = ${STAGING_DIR} | 41 | Prefix = |
42 | Binaries = ${BUILD_SYS}${bindir_native} | 42 | Binaries = ${STAGING_BINDIR_NATIVE} |
43 | Headers = ${MACHINE}${prefix}/include/qt4 | 43 | Headers = ${STAGING_INCDIR}/qt4 |
44 | Plugins = ${MACHINE}${prefix}/lib/qt4/plugins/ | 44 | Plugins = ${STAGING_LIBDIR}/qt4/plugins/ |
45 | Mkspecs = ${MACHINE}${prefix}/share/qt4/mkspecs/ | 45 | Mkspecs = ${STAGING_DATADIR}/qt4/mkspecs/ |
46 | EOF | 46 | EOF |
47 | } | 47 | } |
48 | 48 | ||