From: Oswald Buddenhagen Date: Thu, 13 Sep 2012 18:45:19 +0000 (+0200) Subject: don't make the outputs depend on $$QMAKE_DUMPCPP X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=523c90810dd7b283f14971a36918249df73b3e96;p=profile%2Fivi%2Fqtbase.git don't make the outputs depend on $$QMAKE_DUMPCPP 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 --- diff --git a/mkspecs/features/win32/qaxcontainer.prf b/mkspecs/features/win32/qaxcontainer.prf index 2d0ff85..2ea31cf 100644 --- a/mkspecs/features/win32/qaxcontainer.prf +++ b/mkspecs/features/win32/qaxcontainer.prf @@ -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