diff options
author | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-07-23 14:49:55 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-07-23 14:51:08 (GMT) |
commit | c36139c665e61866aff4bf8572890a735167a7d0 (patch) | |
tree | 2f5606b7c97b1f42693fa4753764453ba249d506 | |
parent | 89fc5334c2ef0b92114284d0ffb26d65f76fdb3b (diff) | |
download | Qt-c36139c665e61866aff4bf8572890a735167a7d0.zip Qt-c36139c665e61866aff4bf8572890a735167a7d0.tar.gz Qt-c36139c665e61866aff4bf8572890a735167a7d0.tar.bz2 |
repair showSummary after commit 08b3511a0c
Reviewed-by: thartman
-rw-r--r-- | tools/configure/configureapp.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index 61daca8..ae6ebab 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -3109,7 +3109,9 @@ void Configure::buildQmake() void Configure::buildHostTools() { - dictionary[ "DONE" ] = "yes"; + if (dictionary[ "NOPROCESS" ] == "yes") + dictionary[ "DONE" ] = "yes"; + if (!dictionary.contains("XQMAKESPEC")) return; |