From: Denis Dydychkin Date: Mon, 27 Dec 2010 19:59:21 +0000 (+0000) Subject: qmake_base.bbclass patch to lookup for *.pro within ${S} instead of ${B} X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d81a0f0623776e2d2de44863cd6869f829834046;p=openembedded.git qmake_base.bbclass patch to lookup for *.pro within ${S} instead of ${B} qmake_base.bbclass from release-2010.12 has ability to lookup for QMAKE_PROFILES if none specified by recipe. Unfortunately it does that in ${B} directory instead of ${S}, thus it does not work if they differ. Here is suggested patch: Signed-off-by: Khem Raj --- diff --git a/classes/qmake_base.bbclass b/classes/qmake_base.bbclass index 577c0fab3b..3715cec0df 100644 --- a/classes/qmake_base.bbclass +++ b/classes/qmake_base.bbclass @@ -61,7 +61,7 @@ qmake_base_do_configure() { oenote "using qmake spec in ${QMAKESPEC}, using profiles '${QMAKE_PROFILES}'" if [ -z "${QMAKE_PROFILES}" ]; then - PROFILES="`ls *.pro`" + PROFILES="`ls ${S}/*.pro`" else PROFILES="${QMAKE_PROFILES}" fi