don't make the outputs depend on $$QMAKE_DUMPCPP
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>
Thu, 13 Sep 2012 18:45:19 +0000 (20:45 +0200)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Wed, 19 Sep 2012 17:54:44 +0000 (19:54 +0200)
the variable can contain a complex command which would make a mess of
the makefile.
also, the tool doesn't change all that often, so it's not particularly
useful to depend on the binary.

Change-Id: I965d6555cb22bd6d5306b324f5cad0d747128e99
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
mkspecs/features/win32/qaxcontainer.prf

index 2d0ff85..2ea31cf 100644 (file)
@@ -21,7 +21,6 @@ dumpcpp_decl.input = TYPELIBS
 dumpcpp_decl.variable_out = HEADERS
 dumpcpp_decl.name = DUMP
 dumpcpp_decl.CONFIG += no_link
-dumpcpp_decl.depends = $$QMAKE_DUMPCPP
 
 QMAKE_EXTRA_COMPILERS += dumpcpp_decl
 
@@ -31,6 +30,6 @@ dumpcpp_impl.output = ${QMAKE_FILE_BASE}.cpp
 dumpcpp_impl.input = TYPELIBS
 dumpcpp_impl.variable_out = SOURCES
 dumpcpp_impl.name = CPP
-dumpcpp_impl.depends = $$QMAKE_DUMPCPP ${QMAKE_FILE_BASE}.h
+dumpcpp_impl.depends = ${QMAKE_FILE_BASE}.h
 
 QMAKE_EXTRA_COMPILERS += dumpcpp_impl