aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2017-09-26 13:15:00 +0300
committerSamuli Piippo <samuli.piippo@qt.io>2017-09-26 13:21:41 +0000
commit545bebca0722c21c4cd61c47260202bda20f2db4 (patch)
tree82503d6da46d47cb63dbb69f70739c710588f750 /classes
parent81831558b4dfdeb5030d6519f29d9ce122a434ce (diff)
qtquickcompiler: fix path for QT_HOST_BINS
Bitbake builds need to use QT_HOST_BINS/get for getting the correct path to the host tools. Change it for qtquickcompiler.prf so that project can use CONFIG+=qtquickcompiler without need to have CONFIG+=no_qtquickcompiler_depend as well. Change-Id: I5196e06f249531833fccca6b0b6a213016270ab6 Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
Diffstat (limited to 'classes')
-rw-r--r--classes/qtquickcompiler.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/qtquickcompiler.bbclass b/classes/qtquickcompiler.bbclass
index c36e4c4e..3a1bcbe4 100644
--- a/classes/qtquickcompiler.bbclass
+++ b/classes/qtquickcompiler.bbclass
@@ -49,5 +49,5 @@ python __anonymous() {
d.appendVar('RDEPENDS_' + pn, " %s-dev" % provider)
else:
d.appendVar('DEPENDS', " %s %s-native" % (provider, provider))
- d.appendVar('EXTRA_QMAKEVARS_PRE', " CONFIG+=qtquickcompiler CONFIG+=no_qtquickcompiler_depend")
+ d.appendVar('EXTRA_QMAKEVARS_PRE', " CONFIG+=qtquickcompiler")
}