summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
Diffstat (limited to 'classes')
-rw-r--r--classes/qmake5_base.bbclass7
1 files changed, 5 insertions, 2 deletions
diff --git a/classes/qmake5_base.bbclass b/classes/qmake5_base.bbclass
index e7b85e35..44575c4c 100644
--- a/classes/qmake5_base.bbclass
+++ b/classes/qmake5_base.bbclass
@@ -13,6 +13,9 @@ OE_QMAKE_PLATFORM = "linux-oe-g++"
13# Add -d to show debug output from every qmake call, but it prints *a lot*, better to add it only to debugged recipe 13# Add -d to show debug output from every qmake call, but it prints *a lot*, better to add it only to debugged recipe
14OE_QMAKE_DEBUG_OUTPUT ?= "" 14OE_QMAKE_DEBUG_OUTPUT ?= ""
15 15
16# Look through supplied directories recursively by default
17OE_QMAKE_RECURSIVE ?= "-r"
18
16# Paths in .prl files contain SYSROOT value 19# Paths in .prl files contain SYSROOT value
17SSTATE_SCAN_FILES += "*.pri *.prl *.prf" 20SSTATE_SCAN_FILES += "*.pri *.prl *.prf"
18 21
@@ -159,8 +162,8 @@ qmake5_base_do_configure () {
159 # for config.tests to read this 162 # for config.tests to read this
160 export QMAKE_MAKE_ARGS="${EXTRA_OEMAKE}" 163 export QMAKE_MAKE_ARGS="${EXTRA_OEMAKE}"
161 164
162 CMD="${OE_QMAKE_QMAKE} -makefile -o Makefile ${OE_QMAKE_DEBUG_OUTPUT} -r $QMAKE_VARSUBST_PRE $AFTER $PROFILES $QMAKE_VARSUBST_POST" 165 CMD="${OE_QMAKE_QMAKE} -makefile -o Makefile ${OE_QMAKE_DEBUG_OUTPUT} ${OE_QMAKE_RECURSIVE} $QMAKE_VARSUBST_PRE $AFTER $PROFILES $QMAKE_VARSUBST_POST"
163 ${OE_QMAKE_QMAKE} -makefile -o Makefile ${OE_QMAKE_DEBUG_OUTPUT} -r $QMAKE_VARSUBST_PRE $AFTER $PROFILES $QMAKE_VARSUBST_POST || die "Error calling $CMD" 166 ${OE_QMAKE_QMAKE} -makefile -o Makefile ${OE_QMAKE_DEBUG_OUTPUT} ${OE_QMAKE_RECURSIVE} $QMAKE_VARSUBST_PRE $AFTER $PROFILES $QMAKE_VARSUBST_POST || die "Error calling $CMD"
164} 167}
165 168
166qmake5_base_do_install() { 169qmake5_base_do_install() {