summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/configure/configureapp.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index 1727b30d17..17864046c9 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -3810,8 +3810,9 @@ void Configure::generateMakefiles()
txt << "\t" << args.join(" ") << "\n";
txt << "\t$(MAKE) -$(MAKEFLAGS) -f " << it->target << "\n";
txt << "first: all\n";
- txt << "qmake:\n";
+ txt << "qmake: FORCE\n";
txt << "\t" << args.join(" ") << "\n";
+ txt << "FORCE:\n";
}
}
}