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 <raj.khem@gmail.com>
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