summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2018-10-21 17:58:08 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2018-10-21 18:01:58 +0100
commit56fce22e452900001a12eef77e83f00449a6db81 (patch)
treec9a27aba1f8d33676bdc85240b906dd785467635
parentc07ade603fd16b8ef5e3de42188621ff97d6a79e (diff)
downloadptxdist-56fce22e452900001a12eef77e83f00449a6db81.tar.gz
ptxdist-56fce22e452900001a12eef77e83f00449a6db81.tar.xz
qt5: fix build order
Without this, packages that depend on qt5 may or may not have the examples packages in the dependency list. This happens because the packages depend on qt5.targetinstall. qt5.targetinstall2 may be built later. Fix this by building qt5.targetinstall2 first. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/qt5examples.make4
1 files changed, 2 insertions, 2 deletions
diff --git a/rules/qt5examples.make b/rules/qt5examples.make
index 9901d1bc2..ca5741273 100644
--- a/rules/qt5examples.make
+++ b/rules/qt5examples.make
@@ -18,10 +18,10 @@ endif
endif
ifdef PTXCONF_QT5_EXAMPLES
-$(STATEDIR)/qt5.targetinstall.post: $(STATEDIR)/qt5.targetinstall2
+$(STATEDIR)/qt5.targetinstall: $(STATEDIR)/qt5.targetinstall2
endif
-$(STATEDIR)/qt5.targetinstall2: $(STATEDIR)/qt5.targetinstall
+$(STATEDIR)/qt5.targetinstall2: $(STATEDIR)/qt5.install.post
@$(call targetinfo)
@$(call install_init, qt5-examples)
@$(call install_fixup, qt5-examples,PRIORITY,optional)