From 65e847e20d7405afce546aa6faa37005e18ab075 Mon Sep 17 00:00:00 2001 From: Eric Bénard Date: Wed, 3 Nov 2010 19:30:14 +0100 Subject: meta-toolchain-qte: fill OE_QMAKE_AR MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit this allows the sdk to be used to compile libraries, else, we get : make[1]: cqs : command not found Signed-off-by: Eric Bénard Acked-by: Koen Kooi --- recipes/meta/meta-toolchain-qte.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes/meta/meta-toolchain-qte.bb b/recipes/meta/meta-toolchain-qte.bb index 708803b9fc..058f0d8b97 100644 --- a/recipes/meta/meta-toolchain-qte.bb +++ b/recipes/meta/meta-toolchain-qte.bb @@ -1,5 +1,5 @@ # Qt Embedded toolchain -PR = "r4" +PR = "r5" TOOLCHAIN_HOST_TASK = "task-qte-toolchain-host" TOOLCHAIN_TARGET_TASK = "task-qte-toolchain-target" @@ -15,6 +15,7 @@ do_populate_sdk_append() { echo 'export OE_QMAKE_CC=${TARGET_SYS}-gcc' >> $script echo 'export OE_QMAKE_CXX=${TARGET_SYS}-g++' >> $script echo 'export OE_QMAKE_LINK=${TARGET_SYS}-g++' >> $script + echo 'export OE_QMAKE_AR=${TARGET_SYS}-ar' >> $script echo 'export OE_QMAKE_LIBDIR_QT=${SDKPATH}/${TARGET_SYS}/${libdir}' >> $script echo 'export OE_QMAKE_INCDIR_QT=${SDKPATH}/${TARGET_SYS}/${includedir}/${QT_DIR_NAME}' >> $script echo 'export OE_QMAKE_MOC=${SDKPATH}/bin/moc4' >> $script -- cgit 1.2.3-korg