summaryrefslogtreecommitdiffstats
path: root/mkspecs/features/yacc.prf
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-06-23 11:50:39 +0200
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-06-23 13:25:22 +0000
commit17519feadd7309e125cc64bbac83f73b758c6a60 (patch)
tree062cd6db77a09e08b11498358c9ee0674fe6f5d4 /mkspecs/features/yacc.prf
parent5cfb80a28ef6bf6820c970a6c355e6879021e46e (diff)
don't override user-provided dependencies for our extra compilers
while the names of the compilers are actually an undocumented internal, we don't provide an actually working proper way to sequence extra compiler execution with build-time generated inputs when they are indirectly listed (as via .qrc files). Task-number: QTBUG-54299 Change-Id: I269c26512897b72706dc8b769aa47e8157c2a5c5 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'mkspecs/features/yacc.prf')
-rw-r--r--mkspecs/features/yacc.prf2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkspecs/features/yacc.prf b/mkspecs/features/yacc.prf
index e78dd8cbb3..915fbf6850 100644
--- a/mkspecs/features/yacc.prf
+++ b/mkspecs/features/yacc.prf
@@ -36,7 +36,7 @@
yacc_impl.input = YACCSOURCES
yacc_impl.variable_out = GENERATED_SOURCES
yacc_impl.commands = $$escape_expand(\\n) # We don't want any commands where, but if command is empty no rules are created
- yacc_impl.depends = $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}$${QMAKE_MOD_YACC}$${first(QMAKE_EXT_H)} # Make sure we depend on the step above
+ yacc_impl.depends += $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}$${QMAKE_MOD_YACC}$${first(QMAKE_EXT_H)} # Make sure we depend on the step above
yacc_impl.output = $${QMAKE_CPP_MOD_MOC}${QMAKE_FILE_BASE}$${QMAKE_MOD_YACC}$${first(QMAKE_EXT_CPP)} # Faked output from this step, output really created in step above
QMAKE_EXTRA_COMPILERS += yacc_impl
}