[oe-commits] Denis Dydychkin : qmake_base.bbclass patch to lookup for *. pro within ${S} instead of ${B}

git version control git at git.openembedded.org
Fri Jan 7 22:45:50 UTC 2011


Module: openembedded.git
Branch: master
Commit: d81a0f0623776e2d2de44863cd6869f829834046
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=d81a0f0623776e2d2de44863cd6869f829834046

Author: Denis Dydychkin <nyrl at mail.ru>
Date:   Mon Dec 27 19:59:21 2010 +0000

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

---

 classes/qmake_base.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/classes/qmake_base.bbclass b/classes/qmake_base.bbclass
index 577c0fa..3715cec 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





More information about the Openembedded-commits mailing list