From d9048bef20103ac0c1af3365c8a47f1569a8e529 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Fri, 27 Jul 2012 15:39:49 +0200 Subject: Make 'nmake qmake' work with the stub (fast) Makefiles Without this, if you ran 'nmake qmake' or 'jom qmake' in qtbase's top directory, it would simply tell you that 'qmake' was up to date. After all, there is a directory called 'qmake' there. Change-Id: I6cdb405e8106c137ecbab27923e524b924b19c84 Reviewed-by: Marius Storm-Olsen --- tools/configure/configureapp.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools') 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"; } } } -- cgit v1.2.3